Im trying to get a large logo centered in the header. Even though I’ve selected the header as logo centered, menu below, the image is not centered.
At first even though I set the header to 300px and the logo to fullsize, the logo displayed small. I added quick css code:
.html_header_top.html_logo_center.avia-webkit .logo {
left: 0;
transform: none;
-webkit-transform: none;
}
.logo, .logo a {
height: 100%;
width: 100%;
}
this displays the logo at full size, but it shifts it to the left. (I’ve tried several changes to the left: parameter, but that doesn’t do the trick).
Hey elvirais,
Please try this in Quick CSS:
.logo a {
width: 100% !important;
}
Then remove this CSS which seems to be in your Quick CSS:
.html_header_top.html_logo_center.avia-webkit .logo {
left: 0;
transform: none;
-webkit-transform: none;
display: table;
margin: 0 auto;
}
Best regards,
Rikard
That works for centering it, but then the logo displays at a smaller size.
Hi,
http://nimb.ws/aMHZDg
I can see the size of the logo been really big, are you sure you do not have cache?
Best regards,
Basilis
Support was slow, and I started messing around with css myself. Managed to get it mostly large and centered with this:
.logo, .logo a {
height: 100%;
width: 90%;
margin-left: 4%;
}
The problem is that it’s still off-center on some computers. E.g. my desktop shows it centered, my laptop shows it too far to the right. (No margin-left 5% makes things worse, not better).
Hi elvirais,
Plese remove margin-left: 4%; form the code above and use this:
.html_header_top.html_logo_center .logo {
left: 54%;
}
If you need further assistance please let us know.
Best regards,
Victoria