View Full Version : why don't my scrollbars show up?-


eyce_online
05-14-2005, 05:00 PM
ok i use frames on my page. but i can't get the the frames scrollbars to change to

<font style="font-family:arial;color:#fee187;font-size:11px"><style type="text/css"><!-- body{scrollbar-3dlight-color:#000000;scrollbar-arrow-color:#fee187; scrollbar-base-color:#000000; scrollbar-darkshadow-color:#000000; scrollbar-face-color:#000000; scrollbar-highlight-color:#000000; scrollbar-shadow-color:#000000}//--></style>

also is there a way to make the background transparent instead of using <style type="text/css"><!-- body{background:#000000} //-->
</style>

http://www.freewebs.com/dynastyproductionz/

Dark_Soul
05-15-2005, 01:23 AM
I think the scroll bar wont show up because maybe the background and the scroll bar have the same color.Try changing the colors of the scroll bar.

Moresgirl
05-18-2005, 03:30 AM
Omg... I had so much trouble with this one too. That is? Until I found this great little thing on a site. All you have to do with it? Is put in the types of colors you want your scrollbar to be and then click submit. It automatically translates it into code for you so all you have to do is copy and paste.

This is the url :: http://graphic.kaiyosei.net/others/scroll.html

Hope this helps ya!

eyce_online
05-18-2005, 04:20 AM
Thanx 4 the help.

Monkey Bizzle
05-18-2005, 04:24 AM
the reason it doesn't work is because you need to put the <style> stuff INSIDE the <head></head> tags with ONE set of <style> tags. For example, here is what the beginning of your index page SHOULD look like:

<html>
<head>
<title>DynaSty ProductionZ</title>

<style type="text/css">

body{background-color: #000000;
scrollbar-3dlight-color: #000000;
scrollbar-arrow-color: #fee187;
scrollbar-base-color: #000000;
scrollbar-darkshadow-color: #000000;
scrollbar-face-color: #000000;
scrollbar-highlight-color: #000000;
scrollbar-shadow-color:#000000;}

a
{text-decoration: none;}

a:link
{font-family: arial;
font-size: 11px;
color: #fee187;}

a:active
{font-family: verdana;
font-size: 11px;
color: #fee187;}

a:visited
{font-family: arial;
font-size: 11px;
color: #fee187;}

a:hover
{font-family: verdana;
font-size: 11px;
color: #fee187;
filter:blur(color:#fee187, strength=3);
height: 0px;
width: inherit;}

</style>
</head>