How to center the logo for the Hellfire theme

Latest Reply from Alice at 2016-03-10 06:45:49
So I am using the Hellfire theme and I removed the TOP menu and the Search bar.

However with my logo I can only do a logo that is about 200 width for it to center. If I make it any longer then it just keeps going to the right, instead of centering the text.

The logo code in the CSS is


#logo {
width:400px;
position:absolute;
left:50%;
margin-left:-150px;
}

And you can see how it currently looks at my website..

www.crazed-gaming.com

Thanks in advance for any help you all can provide! :)
Hi!

Please, replace it with the code:


#logo {
width:400px;
position:absolute;
left: 0;
right: 0;
text-align: center;
margin: 0 auto;
}

Leave a reply

Add codeAdd image