2

http://jsfiddle.net/kAAK9/1/

<body>
<nav id="mainNav">
    <div id="navCenter">
        <table>
            <tr>
                <td class="navItem" id="home">Home</td>
                <td class="navItem" id="forums">Forums</td>
                <td class="navItem" id="staff">Staff</td>
                <td class="navItem" id="donate">Donate</td>
            </tr>
        </table>
        <h2>Servername</h2>
    </div>
</nav>
</body>

If the output window is smaller than 960px; I need a scroll bar to be added at the bottom, How would I do this? I have tried adding overflow properties but have had no luck.

JQUERY Solution: here

Community
  • 1
  • 1

1 Answers1

0
overflow-x: scroll

apply that to whatever you need a scroll to

Andrew Matthew
  • 432
  • 1
  • 5
  • 15
  • I have added this to the body, This way the body text will scroll when the bar is moved, However since the nav is fixed, it does not scroll. – user3625283 May 22 '14 at 13:44