How to center logo

Wrong forum.

Anyhow, you do it this way: in template header.css, replace
Code:
#logo
{
display: block;
float: left;
line-height: {xen:calc '@headerLogoHeight - 4'}px;
*line-height: @headerLogoHeight;
height: @headerLogoHeight;
vertical-align: middle;
}

by

Code:
#logo
{
display: block;
float: center;
line-height: {xen:calc '@headerLogoHeight - 4'}px;
*line-height: @headerLogoHeight;
height: @headerLogoHeight;
vertical-align: middle;
}
 
Wrong forum.

Anyhow, you do it this way: in template header.css, replace
Code:
#logo
{
display: block;
float: left;
line-height: {xen:calc '@headerLogoHeight - 4'}px;
*line-height: @headerLogoHeight;
height: @headerLogoHeight;
vertical-align: middle;
}

by

Code:
#logo
{
display: block;
float: center;
line-height: {xen:calc '@headerLogoHeight - 4'}px;
*line-height: @headerLogoHeight;
height: @headerLogoHeight;
vertical-align: middle;
}
There is no such thing as float:center;.

Give me a few minutes and I'll play around with getting it centered.
 
You would be better off asking in the style thread as there may be a style property for it, or it may require a different solution.
 
Top Bottom