Hello. Please see this image for desirables.
ONLY on the home page (ID 2125), I need to adjust the header for Media Query 812px.
This CSS has no impact
@media only screen and (max-width: 812px) {.page-id-2125 .html_header_top.html_header_sticky #main {padding-top:50px!important;}}
This CSS works, but also impacts EVERY page. Not sure why the Page ID is not working.
@media only screen and (max-width: 812px) {.html_header_top.html_header_sticky #main {padding-top:50px!important;}}
Thank you!
Hey WP Turned,
You are not following the DOM tree structure in your CSS, that is likely why it’s not working. The page id class comes after the html_header_top class for instance, but you are calling it before so the CSS will be ignored.
Best regards,
Rikard
Good to go, thank you.