View Full Version : scroll bar and frame height


thisgirl
11-18-2004, 04:19 PM
why wont my scroll bar change color? (it's .css is in an iframe on my page)

BODY { background-color: transparent; }
{

font-family: Verdana; font-size: 8pt; color:#ffffff; line-height: 12px ; LETTER-SPACING: 0pt
}
TR {
font-family: Verdana; font-size: 8pt; color:#ffffff; line-height: 12px ; LETTER-SPACING: 0pt
}
TD {
font-family: Verdana; font-size: 8pt; color:#ffffff; line-height: 12px ; LETTER-SPACING: 0pt
}
A:link {
COLOR: #ffffff; TEXT-DECORATION: none; font-weight: bold
}
A:visited {
COLOR: #ffffff; TEXT-DECORATION: none; font-weight: bold
}

A:hover {
COLOR: #15164D; font-weight: bold; TEXT-DECORATION: none;
} {
SCROLLBAR-FACE-COLOR: #FCFBF6; SCROLLBAR-HIGHLIGHT-COLOR: #7D7D95; SCROLLBAR-SHADOW-COLOR: #7D7D95; SCROLLBAR-3DLIGHT-COLOR: #FCFBF6; SCROLLBAR-ARROW-COLOR: #7D7D95; SCROLLBAR-TRACK-COLOR: #FCFBF6; SCROLLBAR-DARKSHADOW-COLOR: #7D7D95; BACKGROUND-COLOR: #FCFBF6; TEXT-ALIGN: justify
}



AND... Is there a way to make your iframe height unlimited so you dont need a scroll bar on it?

starlet
11-18-2004, 04:51 PM
It should go in the body area...more like this...

BODY { background-color: transparent;

font-family: Verdana; font-size: 8pt; color:#ffffff; line-height: 12px ; LETTER-SPACING: 0pt;

SCROLLBAR-FACE-COLOR: #FCFBF6; SCROLLBAR-HIGHLIGHT-COLOR: #7D7D95; SCROLLBAR-SHADOW-COLOR: #7D7D95; SCROLLBAR-3DLIGHT-COLOR: #FCFBF6; SCROLLBAR-ARROW-COLOR: #7D7D95; SCROLLBAR-TRACK-COLOR: #FCFBF6; SCROLLBAR-DARKSHADOW-COLOR: #7D7D95; BACKGROUND-COLOR: #FCFBF6; TEXT-ALIGN: justify;
}

TR {
font-family: Verdana; font-size: 8pt; color:#ffffff; line-height: 12px ; LETTER-SPACING: 0pt
}
TD {
font-family: Verdana; font-size: 8pt; color:#ffffff; line-height: 12px ; LETTER-SPACING: 0pt
}
A:link {
COLOR: #ffffff; TEXT-DECORATION: none; font-weight: bold
}
A:visited {
COLOR: #ffffff; TEXT-DECORATION: none; font-weight: bold
}

A:hover {
COLOR: #15164D; font-weight: bold; TEXT-DECORATION: none;
}

As for the second question, no it's not possible.

thisgirl
11-18-2004, 11:17 PM
thanks! at first it didnt work but oncei took out the background color of the scroll bar it worked fine, thanks so much!