MyBB Community Forums

Full Version: Need menu aligned to right of page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My menu is set for the centre of the page.
Search Member List Calendar Help

Which css file to find the line to align it to the right side of the page?
Search Member List Calendar Help

Here is my url so you can see what I'm talking about.
http://coa-mis.net/

Thanks in advance,

Auriel
Hi Auriel Kitsu,

you have to define the menu class in your global.css like this:

.menu {
	text-align: right;
}

After that, please delete the <center> Tag in your header template. In the source code you can find it here:
<ul><center>
					<li><a href="http://coa-mis.net/search.php"><img src="images/metallic/toplinks/search.gif" alt="" title="" />Search</a></li>
					<li><a href="http://coa-mis.net/memberlist.php"><img src="images/metallic/toplinks/memberlist.gif" alt="" title="" />Member List</a></li>
					<li><a href="http://coa-mis.net/calendar.php"><img src="images/metallic/toplinks/calendar.gif" alt="" title="" />Calendar</a></li>
					<li><a href="http://coa-mis.net/misc.php?action=help"><img src="images/metallic/toplinks/help.gif" alt="" title="" />Help</a></li>
				</center></ul>
Thank you so much "Real Kenny"