Can I define another logotype appearing when a user is scrolling downwards on my site?
Meaning that the menu changes to a fixed upper menu. I would like to use in this upper menu a different logo. Is this possible?
.svg #gkLogoSmall.cssLogo
#gkLogoSmall.cssLogo
#gkLogoSmall.cssLogo {
background-image: url('../images/styleX/logo_small.png')!important;
}
.svg #gkLogoSmall.cssLogo {
background-image: url('../images/styleX/logo_small.svg')!important;
}
dziudek wrote:You have to add it at the end of the styleX.css file (X depends from style which you are using).
- Code: Select all
#gkLogoSmall.cssLogo {
background-image: url('../images/styleX/logo_small.png')!important;
}
.svg #gkLogoSmall.cssLogo {
background-image: url('../images/styleX/logo_small.svg')!important;
}
Please remember to replace the X in the path to image in the above CSS code to your style number.