Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Function that removes certain pages Reply To: Function that removes certain pages

#189247
Shpend Berisha
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 :)