I've been adding the custom css override in order to use a biggish round logo but cannot figure out what to do when the Fixed Menu Bar kicks in.
Could you please let me know the code needed to have the logo at max-height: 69px on the Fixed Menu Bar? Please find the current override used so far bellow. It's not final and I'm no css genius so I'm also keen to know if what I've done so far is correct and if it's the best approach to resize/reposition the logo accross various screen resolutions.
Preview; http://www.lightstyle.co.nz/web/dribres ... hp/newborn
- Code: Select all
#gkLogo img {
margin: -25px 0px 0px 10px;
max-height: 233px;
}
@media (max-width: 360px) {
#gkLogo > img {
height: 89px !important;
}
}
@media (max-width: 980px) {
#gkLogo > img {
height: 144px;
margin: -15px 0px 0px 8px;
}
}
Thanks,
Andre