Hi Benjamin,
To center header logo, please open the style.less file (templates/t3_bs3_blank/less), find the following code:
// Logo
// ----
.logo {
// Left align the logo on Tablets / Desktop
@media screen and (min-width: @screen-sm) {
text-align: left;
}
a {
display: inline-block;
line-height: 1;
margin: 0;
}
}
Now change the text-align from left to center
// Logo
// ----
.logo {
// Left align the logo on Tablets / Desktop
@media screen and (min-width: @screen-sm) {
text-align: center;
}
a {
display: inline-block;
line-height: 1;
margin: 0;
}
}
Please compile LESS to CSS so that when you disable dev mode, the changes will be applied.
P/S: By default, the header block has 2 blocks: logo and search. If you want the logo to be center of your site, you should customize header block (templates/t3_bs3_blank/tpls/header.php)
Gardner.