Archived topic
Disable Header Widget on mobile?
3 replies · Started by Mark on May 10, 2017
Viewing posts 1–4 of 4
Is there a way to disable the Header widget when I am on mobile? Currently I am using Lightweight Social Icons and when I go to mobile the icons slide underneath of the Logo and everything is all jumbled up (using a main nav logo that overlaps into Header area)
Try this:
@media (max-width: 768px) {
.header-widget {
display: none;
}
}
Ok, sorry... I should have asked how to disable the Lightweight Social Icons themselves vs the whole Header Widget
Try this instead:
@media (max-width: 768px) {
.header-widget .widget_lsi_widget {
display: none;
}
}
Let me know.
This archived topic is closed to new replies.