Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS When the page width is used it jumps down instead of creating a horizontal overflow?

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #38677
    ideal9
    Member

    Hi.

    I have content on my page in boxes.

    They are displayed like this.

    Box1  Box2  Box3  Box4
    Box5 Box6 ....

    But I want it to display like this.

    Box1  Box2  Box3  Box4 Box5 Box6 ....

    And then if I add anymore it jumps down and creates a vertical overflow.

    But I want it to have a horizontal scroll bar.

    This is how the wrapper is in css.

    #content {
    overflow:auto;
    width:100%;
    height:450px;
    }

    Thanks Brad

    #104939
    Paulie_D
    Member

    It’s all about wrappers, inline blocks and white-space.

    See: http://jsfiddle.net/Paulie_D/ah2zM/

    #104941
    ideal9
    Member

    The site is down?

    #104863
    ideal9
    Member

    Go onto it but is there anyway without using white-space: nowrap; as I had that before but it messes up my p tag so any other way.

    #104864
    Paulie_D
    Member

    No…that’s what makes it work.

    Just update the css of your p tags to re-set the white space. Simples.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘CSS’ is closed to new topics and replies.