Currently, I am attempting to place a logo on my WordPress site right at the top of the header above the menus and in the center. Even though I've positioned it at the top, I'm struggling to align it horizontally in the center. I've experimented with various CSS properties like align:center, display:block, margin:0, auto but none seem to work. It's puzzling why they are being ignored by the site.
Does anyone have suggestions for how I can effectively center a div element containing an image horizontally within the header? Below is some related code that I believe may be helpful. If there is anything else required, please let me know and I will post it.
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="col-md-3 col-xs-3">
<!-- Logo -->
<div calss="logo-wrapper">
<div class="logo">
<a href="http://www.precom.com.pl">
<div class="logo-wrapper" style="width:80px;left:30px;top:0px;">
<img src="http://www.precom.com.pl/wp-content/uploads/2014/12/cropped-g3025.png" alt="Precom - Kominki i Wentylacje">
</div>
</a>
</div>
</div>
<!-- Logo / End -->
</div>