HI,
I wanted my header to stick on top on mobile, so i added this code
.html_header_top.html_header_sticky #header {
position: fixed !important;
}
@media only screen and (max-width: 767px) {
.responsive #main {
padding-top: 82px!important;
}
#main.all_colors{
margin-top:200px!important;
}
}
Now i don’t want it to stick on the product page. So i would be sticky everywhere but not on th product pages.
Hey SouffleDansCassette,
You can try to add this to quick css:
@media only screen and (max-width: 767px) {
.woocommerce-page .responsive #main {
padding-top: 0px!important;
}
.woocommerce-page #main.all_colors{
margin-top:0px!important;
}
}
Best regards,
Jordan Shannon