Centering Image in Sitewide Header Site Title

Permalink
Just installed Concrete5 8.4.3 and using the Cloneamental theme.

I've already modified the header.php file to remove the search box, and I've set the Sitewide Header Site Title and Sitewide Header Navigation Area to
<div class="col-sm-15 col-xs-15">
in order to have them stacked vertically and stretch the width of the page.

Now I'm trying to center an image in the Sitewide Header Site Title field. After modifying the header.less file to set an image centered, I've put in an image with both an image block and with HTML, and neither seems to work.

Anyone got any ideas on this one?

 
ConcreteOwl replied on at Permalink Best Answer Reply
ConcreteOwl
wrap your image in a div like this
<div style="text-align:center">
<p><img alt="xxx.jpg" src="http://xxx/xxx/xxx" /></p>
</div>

Incidentally you are calling for width of 15 columns wide, cloneamental uses the 1 - 12 column wide system with each column equal to 8.3333333% width.
12 x 8.3333333% equals 100%
Your 15 columns will give you 125% width?