Click here to Skip to main content
15,892,927 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I am stuck on a simple CSS problem, but can't seem to find a fix!

I am building a custom pagination system (ex p1 - p2 - p3 - p4 - p5 etc).

Each 'page number' is a LI, with CSS as:


CSS
ul.simplePagerNav li
{
    display: block;
    float: left;
    padding: 10px;
    margin-bottom: 10px;
    font-family: georgia;
    font-size: 14px;
}



The UL containing all the LI's are placed inside a DIV.

The DIV's CSS at the moment is:

XML
<pre lang="css">#startSimplePagerNav
        {
            overflow: auto;
            width: 500px;
            height: 70px;
            white-space: nowrap;
        }</pre>



However, what I would like to achieve, is to have all the LI's in a long row, with a horizonal scrollbar only, so that users can scroll left and right to see the different page numbers, and not up and down.

At the moment, the text in the DIV runs down vertically, with the scrollbar appearing on the right.

Currently:
p1 - p2 - p3 - p4 -
p5 - p6 - p7 - p8

What I would like:
p1 - p2 -p3 - p4 - p5 - p6 - p7- p8


Can anybody help, please?
Posted

1 solution

This works for me in IE8:

CSS
.nav-holder
{
  overflow-x: auto;
  white-space: nowrap;
  width:100px;
}

.nav-item
{
      display: inline-block;
      width: 25px;
      white-space: normal;
}


HTML
<div class="nav-holder">
      <ul>
              <li class="nav-item">p1</li>
              <li class="nav-item">p2</li>
              <li class="nav-item">p3</li>
              <li class="nav-item">p4</li>
              <li class="nav-item">p5</li>
              <li class="nav-item">p6</li>
              <li class="nav-item">p7</li>
              <li class="nav-item">p8</li>
              <li class="nav-item">p9</li>
      </ul>
</div>


Not sure about other browsers as I'm at work and don't have access to them, but I believe this should work.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900