How to center logo?

admin.php > appearance > templates > filter: header

Edit the header.css and from #logo remove the float:left and instead use text-align: center;

Code:
	#logo
	{
		display: block;
		text-align: center;
		line-height: @headerLogoHeight;
		height: @headerLogoHeight;
		vertical-align: middle;
	}
 
Top Bottom