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
What template can I find the logo variable thing (so I can move the logo)???


Centerize Links (RC3)
CLICK HERE
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".
Thanks alot MM! Big Grin
How do I centerise the links?

I hate CSS loads! :mad:... probably cuz i dont know anything about it.
That would be in the toplinks template I believe...

And CSS is much easier to create websites than with straight HTML.
well i added <center> and </center> tags at the top and bottom of the toplinks templates and it doesnt seem to work...
Try <div align="center"> and </div> instead.
div#header h1 {
background : url('$theme[logo]') no-repeat right;
height : 67px;
margin : 0;
align: center;
}
Hope that helps.
Actually, its
<div style="float:centre;">
<ul>
<li><a href="$settings[bburl]/member.php?action=logout">Logout</a></li>
<li><a href="$settings[bburl]/usercp.php">User CP</a></li>
<li><a href="$settings[bburl]/memberlist.php">Member List</a></li>
<li><a href="$settings[bburl]/search.php">Search</a></li>
<li><a href="$settings[bburl]/misc.php?action=help">Help</a></li>
<li><a href="$settings[bburl]/calendar.php">Calendar</a></li>
<li><a href="$settings[bburl]/index.php">Home</a></li>
</ul>
</div>
k776
u need a gap inbetween "float:" and "centre;"
<div style="float: centre;">
Pages: 1 2