View Full Version : scroll bars and i-frames *blush*


Felicity...
06-30-2003, 07:44 PM
how do i make my scroll bars a diffrent colour when i have i-frames? i searched the forum but didnt find anything... well one but i didnt understand it

Jiggawot
06-30-2003, 07:46 PM
You need to put the scrollbar-color CSS in the iFrame.

body
{
scrollbar-track-color: #F1E5E7;
scrollbar-darkshadow-color: #F1E5E7;
scrollbar-face-color: #9A2E3E;
scrollbar-shadow-color: #362629;
scrollbar-3dlight-color: #362629;
scrollbar-highlight-color: #FEB8C5;
scrollbar-arrow-color: #9A2E3E;
}

Felicity...
06-30-2003, 07:48 PM
thats the bit i dont understand... where to put *blushes again*

Jiggawot
06-30-2003, 07:52 PM
Originally posted by Felicity...
thats the bit i dont understand... where to put *blushes again*

Put it between the <head> and </head> tags. Like so:

<html>
<head>
<title> </title>
<style type="text/css">
body
{
background-color: #F1E5E7;
background-attachment: fixed;
scrollbar-track-color: #F1E5E7;
scrollbar-darkshadow-color: #F1E5E7;
scrollbar-face-color: #9A2E3E;
scrollbar-shadow-color: #362629;
scrollbar-3dlight-color: #362629;
scrollbar-highlight-color: #FEB8C5;
scrollbar-arrow-color: #9A2E3E;
}
</style>
</head>
<body>
</body>
</html>

Felicity...
06-30-2003, 08:59 PM
thanks! ^-^ i dont know what i'd do without you *smacks self* i'd be completly LOST!

Jiggawot
06-30-2003, 09:11 PM
Originally posted by Felicity...
thanks! ^-^ i dont know what i'd do without you *smacks self* i'd be completly LOST!

Lol. No problem.^^