we try to put the logo over the top-bar-header (using .logo {margin-top: -50px;}. Despite we arranged "z-index: 10000" the logo does not appear in front.
Do you have a tip for CSS declaration?
Furthermore: Is there a chance to remove the small grey line at the end of header?
we try to put the logo over the top-bar-header (using .logo {margin-top: -50px;}. Despite we arranged "z-index: 10000" the logo does not appear in front.
Do you have a tip for CSS declaration?
Furthermore: Is there a chance to remove the small grey line at the end of header?
Hi,
The thing preventing the logo to be pushed over the top bar is overflow: hidden; on the .site.
If you want to push it over top bar, you can override this with:
.site {overflow: visible;
}
To remove the grey line:
@media (min-width: 992px) {
.site-header.header-classic .nav-container {
box-shadow: none;
}
}
I hope this helps,
Andrej
OrionThemes