Results 1 to 7 of 7

Thread: Need help with this code.. (Transparent ScrollBar)

  1. #1
    Join Date
    Jun 2006
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Need help with this code.. (Transparent ScrollBar)

    Hello Everyone,

    This code came along with the design I found from a graphic website.
    It is an Iframe set up, it works fine.. I love it but I just dont like the scroll bar though.. I was wondering if I could add a code in the Style (CSS) to make the scroll bar transparent..

    here's the style (CSS) code:

    A, A:link, A:visited {color : #570103; text-decoration : none; cursor : crosshair;
    }

    A:hover {color : #ffffff; text-decoration : overline; font-weight : normal; cursor : crosshair;
    }



    h1 {
    color : #570103;
    font-family : Arial;
    font-size : 12px;
    border-top : 1px solid #570103;
    border-bottom : 1px solid #570103;
    font-weight : bold;
    text-align : center;
    letter-spacing : 5px;
    text-transform : uppercase;
    }
    BODY {
    font-family: Verdana, Arial, Times new roman; font-size: 9pt; color: #570103; background-repeat: repeat-y; CURSOR: crosshair; }


    }
    TD {
    FONT-SIZE: 9pt; COLOR: #570103; FONT-FAMILY: Times new roman;
    }
    A {
    CURSOR: crosshair
    }




    Thank you very much..
    MissM

  2. #2
    Join Date
    Jul 2005
    Location
    Planet Earth
    Posts
    94
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hi there
    See if this is of any help....


    #Scroller {
    position:absolute;
    left:100px;
    top:50px;
    width:250px;
    height:150px;
    overflow: auto;
    background: transperant;
    padding: 5px;
    }

    <style type="text/css">
    #Scroller {
    scrollbar-arrow-color:#333333;
    scrollbar-track-color:#CCCCCC;
    scrollbar-face-color:#CCCCCC;
    scrollbar-highlight-color:#FFFFFF;
    scrollbar-3dlight-color:#FFFFFF;
    scrollbar-darkshadow-color:#FFFFFF;
    scrollbar-shadow-color:#FFFFFF;
    }
    </style>

    Edit accordingly

    Redice

  3. #3
    Join Date
    Jun 2006
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by redice
    Hi there
    See if this is of any help....


    #Scroller {
    position:absolute;
    left:100px;
    top:50px;
    width:250px;
    height:150px;
    overflow: auto;
    background: transperant;
    padding: 5px;
    }

    <style type="text/css">
    #Scroller {
    scrollbar-arrow-color:#333333;
    scrollbar-track-color:#CCCCCC;
    scrollbar-face-color:#CCCCCC;
    scrollbar-highlight-color:#FFFFFF;
    scrollbar-3dlight-color:#FFFFFF;
    scrollbar-darkshadow-color:#FFFFFF;
    scrollbar-shadow-color:#FFFFFF;
    }
    </style>

    Edit accordingly

    Redice
    Thanks., Ill give it a try!

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Uh?

    Presuming that's a style block, where's the first #Scroller block meant to be? In the body?
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  5. #5
    Join Date
    Jul 2005
    Location
    Planet Earth
    Posts
    94
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Those are the css code

    html code

    <div id="Scroller">
    INSERT INPUT
    <div />

  6. #6
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    What on Earth...?
    "<div />": Literal translation: insert new empty div-block here -- in XHTML. In HTML it would be perceived as a corruption of some obscure SGML shorthand feature.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  7. #7
    Join Date
    Jul 2005
    Location
    Planet Earth
    Posts
    94
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    forgive my ignorance

    </div>

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •