For the logo, when resizing the browser, only in Safari, it does this weird “scale-jump” thing. Hard to explain but you’ll see what I mean when viewed in Safari.
site link to follow…
Hi!
You can try adding following code to Quick CSS
.logo, .logo a, .logo img { max-width: 150px; }
But mobile users will not see such thing
Cheers!
Yigit
Well I want it stay a certain size when in desktop mode, so I used:
@media only screen and (max-width: 990px) {
.responsive .logo a, .responsive .logo img {
max-width: 150px;
height: auto !important; }
}
But since the weird jump is only in Safari for a moment, I probably won’t worry about it.