MyBB Community Forums

Full Version: How to vertically align?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Im just playing around with the nav menu, and if you look at www.berlingoforum.co.uk you can see that the search box is not inline with the Menu links.

Any help would be appreciated.
Go to: ACP > templates > header templates > header > and find;
<center><a href="http://www.berlingoforum.co.uk/memberlist.php"><img src="http://www.pavementsucks.com/board/images/cleancut/toplinks/memberlist.gif" alt="" title="" />Member List</a>

					<a href="http://www.berlingoforum.co.uk/calendar.php"><img src="images/normal/123.png" alt="" title="" />Calendar</a>

<a href="http://www.berlingoforum.co.uk/donate.php"><img src="images/normal/donate.png" alt="" title=""/>Donate</a>

					<a href="http://www.berlingoforum.co.uk/misc.php?action=help"><img src="images/normal/help.png" alt="" title="" />Help</a>

                                         <a href="http://www.berlingoforum.co.uk/contact.php"><img src="images/normal/contact.png" alt="" title="" />Contact Us</a>

				</div></center>

and Change it to;
<div class="float_right"><a href="http://www.berlingoforum.co.uk/memberlist.php"><img src="http://www.pavementsucks.com/board/images/cleancut/toplinks/memberlist.gif" alt="" title="" />Member List</a>

					<a href="http://www.berlingoforum.co.uk/calendar.php"><img src="images/normal/123.png" alt="" title="" />Calendar</a>

<a href="http://www.berlingoforum.co.uk/donate.php"><img src="images/normal/donate.png" alt="" title=""/>Donate</a>

					<a href="http://www.berlingoforum.co.uk/misc.php?action=help"><img src="images/normal/help.png" alt="" title="" />Help</a>

                                         <a href="http://www.berlingoforum.co.uk/contact.php"><img src="images/normal/contact.png" alt="" title="" />Contact Us</a>

				</div>
Thank you very much.
Thanks.