Home › Support Forums › Theme Support › Pinboard › desktop/mobile › Reply To: desktop/mobile
otherwhirl
Participant
Hi,
so I have footer ads I need to disable for mobile as well.
I tried the code you gave which worked in the header:
@media (max-width: 736px) {
#sidebar-header {
display: none;
}
}
I tried using it with the following:
@media (max-width: 736px) {
#sidebar-footer {
display: none;
}
}
I even tried this one:
@media (max-width: 736px) {
#footer {
display: none;
}
}