MyBB Community Forums

Full Version: Evenly spaced links on nav bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I was wondering if anyone could help me out, I'd like to know how to space out the links on the nav bar evenly, like in this example. Any help appreciated, thanks. Big Grin
With a table:
<table width="100%"  border="0">
  <tr>
    <td>Link One</td>
    <td>Link Two</td>
    <td>Link Three</td>
    <td>Link Four</td>
    <td>Link Five</td>
  </tr>
</table>
Moved to Templates, Themes, and Graphics.
Christian Wrote:With a table:
<table width="100%"  border="0">
  <tr>
    <td>Link One</td>
    <td>Link Two</td>
    <td>Link Three</td>
    <td>Link Four</td>
    <td>Link Five</td>
  </tr>
</table>

Thanks! Wink