Hi Yigit. If you remember I asked you for help about that problem: “if I make the extra elements above header on two rows, the slider gets partly hidden from the top from the menu.”
You gave me the following advise:
“Hi svetkol! Please add following code to Quick CSS
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 144px;}”
The poroblem is that it was not working without !important at the end so I did that. But now when the site is viewed on a tablet or mobile phone the padding from top gets very high. Try to resize the screen size and you can see by yourself. How to solve that now.
Hey svetkol!
Please change the code to following one
@media only screen and (min-width: 769px) {
.html_header_top.html_header_sticky #top #wrap_all #main {
padding-top: 144px !important; }}
:)
Cheers!
Yigit
Great! Now it works! Thanks again.