Hi,
When I scroll up and down on my website, the logo isn't completely hidden behind the top menubar
How can I fix this?
Tnx in advance,
Michael
teitbite wrote:Could you please provide me with a URL to your website, either here or via PM (click the “Private Message” text underneath my avatar) so that I may analyze it? It is a lot easier for us to diagnose issues when we have a live site to examine.
.gk-fixed-nav #gkLogo {
margin: 38px 0 0;
}
teitbite wrote:hi
haha. that's the first time someone used a link with image on our forum
Try add this code to override.css
- Code: Select all
.gk-fixed-nav #gkLogo {
margin: 38px 0 0;
}
#gkHeaderNav.static {
height: 170px;
}
#gkHeaderNav.static #gkMainMenu {
top: 95px;
}
#gkHeaderNav.static #gkLogoSmall {
top: 0;
}
#gkHeader.menu-visible {
padding-top: 170px;
}
teitbite wrote:Please add this code to override.css and make sure override is enabled in template settings.
- Code: Select all
#gkHeaderNav.static {
height: 170px;
}
#gkHeaderNav.static #gkMainMenu {
top: 95px;
}
#gkHeaderNav.static #gkLogoSmall {
top: 0;
}
#gkHeader.menu-visible {
padding-top: 170px;
}
#gkHeaderNav.static.active {
height: 73px;
}
#gkHeaderNav.static.active #gkMainMenu {
top: 0;
}
teitbite wrote:Hi
Add this code as well:
- Code: Select all
#gkHeaderNav.static.active {
height: 73px;
}
#gkHeaderNav.static.active #gkMainMenu {
top: 0;
}
teitbite wrote:Hi
Is it fixed or happening on a specific page only ? I'm checking it, but eveyr page looks to be ok.
@media only screen and (max-width:640px) {
#gkLogo.cssLogo {
margin-top: 0;
}
}
teitbite wrote:Please add this code to override.css and make sure override is enabled in template settings.
- Code: Select all
@media only screen and (max-width:640px) {
#gkLogo.cssLogo {
margin-top: 0;
}
}