MyBB Community Forums

Full Version: Where is the logo?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I dont on mine, it works for me still Confused

k776
Sorry, I misread and thought the conversation was still about the logo.

BTW, no, you don't need a space. Smile
mine seemed to need a space, but guess your right if u both say u didn't
Actually, I think it would be "center" and not "centre," but you can't float to the center.
Musicalmidget Wrote:It's actually in the css now. If you look down the template you'll come across this (in the defalt templates)...

div#header h1 {
	background : url('$theme[logo]') no-repeat right;
	height : 67px;
	margin : 0;
}

If you simply want to align the logo, you can change "right" to "left" or "center".

Where is the location of this CSS that you refer to in this post? I can't seem to find a CSS with the above code in it anywhere....
In the admin. center it is in the css template.

Admin. -> Templates -> Modify/Delete -> Default Templates -> Expand -> css -> Change original
I spoke to Chris Boulton about this and he said:
Chris Boulton Wrote:to the li, make sure there is no list style
and add display: inline;
then to the div.menu add text-align: center;

But i tried that and it didnt work... whenever they centerize they are all on seperate lines... but i hear RC4 will have just plain HTML links, instead of complicated CSS buttons Smile
Just done it... heres my CSS Menu bit (replace it with your menu bit)
Quote:div.menu {
background : $theme[menubgcolor] $menubgimage;
border : 1px solid $theme[menubgcolor];
/* FIX: Make internet explorer wrap correctly */
height : auto !important; height : 1em;
text-align: center;
}

div.menu a:link, div.menu a:active, div.menu a:visited {
color : $theme[menucolor];
display : inline;
padding : 5px;
text-decoration : none;
}

div.menu a:hover {
background : $theme[menuhoverbgcolor] $menuhoverbgimage;
color : $theme[menuhovercolor];
}

div.menu ul {
margin : 0;
padding : 0;
float: center;
}

div.menu li {
margin : 0;
padding : 0;
display: inline;
float: center;
text-align: center;
}
Pages: 1 2