how hide scrol bar in the web pages?

Discussion in 'HTML & Website Design' started by surfer33, Jun 16, 2007.

  1. #1
    the right of each page there are a scroll bar for see full pages and u can up and down it!
    but i want hide it in my pages

    how i can?
     
    surfer33, Jun 16, 2007 IP
  2. VietXKosuke

    VietXKosuke Active Member

    Messages:
    193
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    58
    #2
    I don't think it's possible if the size of the webpage exceeds the individuals resolution.
     
    VietXKosuke, Jun 16, 2007 IP
  3. metalstein

    metalstein Well-Known Member

    Messages:
    660
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    110
    #3
    hi
    you can make this with css codes;
    change this codes what you like
    I mean hide scrool make scrool colors white ;)

    BODY {
    scrollbar-face-color:#A3C1E0;
    scrollbar-highlight-color:#FFFFFF;
    scrollbar-3dlight-color:#FFFFFF;
    scrollbar-darkshadow-color:#FFFFFF;
    scrollbar-shadow-color:#FFFFFF;
    scrollbar-arrow-color:#FFFFFF;
    scrollbar-track-color:#66CC33;
    }
     
    metalstein, Jun 17, 2007 IP
  4. Will Morgan

    Will Morgan Peon

    Messages:
    70
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Wrong.
    body { overflow: hidden; } 
    Code (markup):
    Put this in your CSS. :)
     
    Will Morgan, Jun 19, 2007 IP
  5. HDaddy

    HDaddy Active Member

    Messages:
    287
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #5
    Does the page fit in 800x600 resolution? If it doesn´t people who use that resolution will not be able to browse your site if they can´t scroll. Am i right?
     
    HDaddy, Jun 19, 2007 IP
  6. ektz

    ektz Active Member

    Messages:
    599
    Likes Received:
    21
    Best Answers:
    0
    Trophy Points:
    80
    #6
    or may be you can make a change in above css , so that if ur template width is less than 1024, then it will not show any scrollbar. and in case of 800 resolution, it will.

    hope this helps.
     
    ektz, Jun 19, 2007 IP
  7. client3

    client3 Banned

    Messages:
    169
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #7
    use the site background color as scrollbar color, thats what 'metalstein' said about, so its can be work with any resolution....
     
    client3, Jun 19, 2007 IP
  8. Will Morgan

    Will Morgan Peon

    Messages:
    70
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #8
    You're obviously not too experienced, since you're forgetting Firefox, Opera, Safari and Netscape browsers do not allow custom scrollbars, since this is not valid CSS. Use my method. It works.
     
    Will Morgan, Jun 19, 2007 IP