.html_header_top.html_header_sticky #top #wrap_all #main
Need to be able to adjust it so that instead of 170px it’s 100px.
If I add .html_header_top.html_header_sticky #top #wrap_all #main{padding:100px!important}
there is an issue on the mobile and it was not overriding the @media css code I had tried to put in. Any help is greatly appreciate.
Hey bensondesign,
So you want the CSS to not apply to mobile? If so then please try this:
@media only screen and (min-width: 768px) {
.html_header_top.html_header_sticky #top #wrap_all #main {
padding:100px!important
}
}
Best regards,
Rikard
Worked perfect. Thanks.