Please go to http://dev.thecgschool.com/products/books/
At the top of the page, you will see that the header overlaps the title areas on all the pages.
The code I want to replace is:
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 125px;
}
with this:
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 140px; !important
}
I’ve tried adding it to the Quick CSS code, the Child CSS code & even replacing the code itself & it won’t work. Can you help?
Hey Brian!
You should change the code to following one
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 140px!important;
}
!important rule is not being applied becuase of wrong placement of semicolon
Best regards,
Yigit
Thanks for the quick response. I knew it was something simple.