MyBB Community Forums

Full Version: Navagation Bar positioning
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi folks Smile Looking for some help with my newly created Nav Bar. I'm trying to make it so the nav bar is the same width as everything else on that page (content area and such).

As always any help is appreciated Smile

Thanks!
Try to Add width attribute in .menu style in global.css like this;
.menu ul {
	color: #ffffff;
	font-weight: bold;
	text-align: right;
width: 100%;
	padding: 4px;
}
(2011-06-06, 03:03 PM)Yaldaram Wrote: [ -> ]Try to Add width attribute in .menu style in global.css like this;
.menu ul {
	color: #ffffff;
	font-weight: bold;
	text-align: right;
width: 100%;
	padding: 4px;
}

Thanks, though it doesn't seem to be working.
Put that menu in the container div.
In 'header' template, right below:
<div id="container">
(2011-06-06, 03:06 PM)Aries-Belgium Wrote: [ -> ]Put that menu in the container div.
In 'header' template, right below:
<div id="container">

That did the trick Smile Thanks! +rep to both of you!