Back Home

Open Designs

Community. Driven.

    • CommentAuthorniemion
    • CommentTimeApr 24th 2007 edited by niemion on the 24th April 2007 at 21:33:01 EDT
     
    Hi out there

    I have some issues with my site at http://niemi.it

    I need to kill the horizontal scroll and replace it with vertical scroll. My first guess was I needed to play with the width. But I couldn't make it happen that way.

    What to change in the style sheet to accomplish it? Anyone in doubt what I want, it's a scrollbar like this:

    -----------------

    and not

    -
    -
    -
    -
    -
    -
    -
    -

    Edit: I just realized that some of you with large screen resolutions (1280x1024 or above) would have no scroll at all. Try making your window area smaller to see the horizontal scroll, or simply adjust your screen res. downwoards.
    • CommentAuthorniemion
    • CommentTimeApr 25th 2007
     
    Weiss made me understand that it's horizontal, not vertical scroll I need. wink
    •  
      CommentAuthorgnome
    • CommentTimeApr 25th 2007
     
    Server Not Found!
    • CommentAuthorAeriff
    • CommentTimeApr 25th 2007
     
    Well, from what I understand in your rather confusing initial post, in your CSS if you want to hide the horizontal scroll (which is left to right):

    body { overflow-x: hidden }

    To hide the vertical scroll (top to bottom):

    body { overflow-y: hidden }

    That should do the trick.