http://216.70.110.123/ How do I add a logo like link (left) but have it in the center
My Site - http://ringnews24.com/joomlatest2/
My logo - http://ringnews24.com/boxingforum/image ... 4_logo.png
#gkLogo.cssLogo {
background: url("http://ringnews24.com/boxingforum/images/misc/vbulletin4_logo.png") no-repeat scroll 0 0 transparent!important;
width: 700px;
height: 188px;
margin-left: auto;
margin-right: auto;
display: block;
float: none!important;
}
#gkPageTop { background: #fff;}
#gkPageTop .gkPage {background: #fff;}
#gkPageTop { background: #fff;}
#gkLogo.cssLogo {
background: url("http://ringnews24.com/boxingforum/images/misc/vbulletin4_logo.png") no-repeat scroll 0 0 transparent!important;
width: 700px;
height: 188px;
margin-left: auto;
margin-right: auto;
display: block;
float: none!important;
}
#gkMainMenu { background: #000;}
#gkPageTop .gkPage {background: #fff;}
#gkLogo.cssLogo {
background: url("http://ringnews24.com/boxingforum/images/misc/vbulletin4_logo.png") no-repeat scroll 0 0 transparent!important;
width: 700px;
height: 188px;
margin-left: auto;
margin-right: auto;
display: block;
float: none!important;
}
#gkMainMenu { background: #000;}
normanUK wrote:White space is coming from logo background and menu + user area makes up the second part which in this case menu background width is not enough to cover the empty area.
You can edit php files and add an extra div container to cover menu + user area which then you can give this div element black color to cover the empty white space in between.
You will have to edit template file every time you update. Let me know if you want to do this and I ll post the solution.
See you around...
<?php if($this->API->get('show_menu', 1)) : ?>
<div class="gkMenuBar">
<?php if($this->API->get('show_menu', 1)) : ?>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
</div>
.gkMenuBar{ background: #000!important;overflow:hidden;}