When the responsive layout is at it’s narrowest, is there a way to force the logo nearer the left margin? I’ve keep the image a bit bigger than your recommended size – which I like – but am now suffering the menu popout overlapping the logo
I did set the align to ‘left’ but it still seems to skip around a lot during window resizing!
Thanks guys :)
Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 480px) {
strong.logo {
left: -60px !important;
position: relative !important;
}
}
Cheers!
Josue
AWESOME!
One question.. is it possible to re-scale (bit smaller) the logo at that display size too?
Thanks guys :)
Try this (replace the last code):
@media only screen and (max-width: 480px) {
strong.logo {
left: -60px !important;
position: relative !important;
}
.responsive .logo img {
height: 60px !important;
position: relative;
top: 12px;
left: 10px;
}
}
Best regards,
Josue
Perfect :)