I need to remove / not display the very top header ONLY on mobile/responsive (the one with social icons and small info text only)… It really looks bad above the logo on mobile… but looks great on desktop…
Regards,
Mark L. Lee
Hi!
Which header layout are you using?
Regards,
Peter
Hi,
Please add this on your custom.css or Quick CSS
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
#header_meta {
display: none;
}
}
Regards,
Ismael
Thank you… that worked perfectly… much appreciated…
MLL