html - How to align this logo center using bootstrap? -
i have page:
i want align , center logo in picture below
code html:
<span class="logo"> <a href="http://dizievents.ch"><img src="http://dizievents.ch/wp-content/uploads/2015/07/dizi-events-3.png" alt="logo"></a> </span>
i tried replace code following
<span class="img-responsive center-block"> <a href="http://dizievents.ch"><img src="http://dizievents.ch/wp-content/uploads/2015/07/dizi-events-3.png" alt="logo"></a> </span>
can tell me please wrong , not work? it's simple (i think) realize problem
thanks in advance!
use inbuilt twitter bootstrap class col-md-offset-6
align logo. if need including centering in smaller devices, replace md
xs
or sm
<span class="logo col-md-offset-6"> <a href="http://dizievents.ch"><img src="http://dizievents.ch/wp-content/uploads/2015/07/dizi-events-3.png" alt="logo"></a> </span>
output:
Comments
Post a Comment