Css.

Discussion in 'Gaming' started by Mildaen, Feb 18, 2007.

  1. Mildaen

    Mildaen Member

    Posts:
    22
    Likes Received:
    0
    Joined:
    Feb 1, 2007
    Location:
    Reno, Nevada
    Well, im trying to eliminate and unneccesary scroll on a page im making how do I do that through CSS its a scroll that goes down and up for one pixel any ideas?
     
  2. johndapunk FTW

    johndapunk FTW Senior Member

    Age:
    34
    Posts:
    2,513
    Likes Received:
    0
    Joined:
    Jan 19, 2006
    Location:
    Palm Beach
    I don't believe there is an element to edit that (at least with CSS.) I know you can edit the scrollbar color, but I think that is about it.
     
  3. xlink

    xlink GR's Tech Enthusiast

    Posts:
    8,054
    Likes Received:
    3
    Joined:
    Nov 19, 2004
  4. johndapunk FTW

    johndapunk FTW Senior Member

    Age:
    34
    Posts:
    2,513
    Likes Received:
    0
    Joined:
    Jan 19, 2006
    Location:
    Palm Beach
    Lol, I did that exact search last night. Unfortunately, like above, it just tells you about the overflow property, and the scroll-bar properties.
     
  5. ChiefNX

    ChiefNX Well-Known Member

    Posts:
    269
    Likes Received:
    0
    Joined:
    Apr 23, 2006
    Are you sure you can't just make page smaller? One pixel isn't very much...

    Anyway, your best bet is

    Code:
    body {
     overflow: hidden;
    }
    
     

Share This Page