On my site, https://theavantnyc.com/ the mobile header is very tall (extra padding at the bottom)
1- How do I Reduce Size of header by removing that extra padding at the bottom?
2- How do I make the mobile header sticky at the top when scrolling the page like on desktop?
Thanks
Hey navindesigns,
Here are the docs for you:
https://share.getcloudapp.com/Z4uq7bgJ You need to wrap this code in the media query.
Best regards,
Victoria
#2 is perfect.
#1- I added the following code but the extra spacing is still there on mobile
@media only screen and (min-width: 990px) {
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 100px !important;
}
}