MyBB Community Forums

Full Version: Make my menu background go all the way across my forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm trying to put my nav bar up on the very top of my forum, this is currently my CSS for my menu and what it currently looks like is below the code.

.menu ul {
        background:url(images/simple/navbg.png) repeat-x;
        position:relative;
        top:0;
        left:0;
        width:100%;
        height:100%;
        color: #000000;
	font-weight: bold;
	text-align: right;
}

.menu ul a:link {
	color: #000000;
	text-decoration: none;
}

.menu ul a:visited {
	color: #000000;
	text-decoration: none;
}

.menu ul a:hover, .menu ul a:active {
	color: #4874a3;
	text-decoration: none;
}

Here's what it looks like:

[Image: ijjNUw.png]

Can anyone help me out?