Home › Forums › Back End › Function that removes certain pages › Reply To: Function that removes certain pages
November 26, 2014 at 2:12 am
#189247
Participant
you can do it using css display:none;
for example
`@media screen and (min-width:320px) and (max-width:480px){
#aboutus {
display:none;
}
}
when the screen is between 320 and 480px the div aboutus will be hidden
sorry for my English :)