Hello,
I just joined the forum and I think it's great.
I have two quick questions.
1. Is it possible to change to color a radio button? Not around the button itself, but inside where the little dot goes?
2. How do you change the color of the scroll bar on your page and in your text boxes? (Like the ones on this page)
Thanks,
Dan
Kiss-My-Kitty
01-23-2003, 04:10 AM
I'm not too sure about the radio button, but here's the coding for the scrollbar:
<style>
scrollbar-face-color : #FFFFFF;
scrollbar-track-color : #FFFFFF;
scrollbar-arrow-color : #FFFFFF;
scrollbar-highlight-color : #333333;
scrollbar-3dlight-color : #333333;
scrollbar-shadow-color : #333333;
scrollbar-darkshadow-color : #333333;
</style>
Just insert that before your </head> tag.
Shaneo
01-23-2003, 09:29 AM
For one of my radio buttons on my website i use this which you can fully customize
<input type="button" value="Ur Value" onclick="process();" style="font-family:verdana"
style="border:1 solid black;font-size:5;background:transparent;color:#808080">
Thanks!
Everything works except for the scroll bar color on my web page. I inserted the code before the </head> tag and nothing happened.
It want it to be like the scroll bar on this page, except not yellow.
starlet
01-23-2003, 05:04 PM
The scrollbar code should be more like this...
<style type="text/css">
body {
SCROLLBAR-FACE-COLOR: #a7a7a7;
SCROLLBAR-HIGHLIGHT-COLOR: #000000;
SCROLLBAR-SHADOW-COLOR: #000000;
SCROLLBAR-3DLIGHT-COLOR: #a7a7a7;
SCROLLBAR-ARROW-COLOR: #E94695;
SCROLLBAR-TRACK-COLOR: #a7a7a7;
SCROLLBAR-DARKSHADOW-COLOR: #a7a7a7;
SCROLLBAR-BASE-COLOR: #000000;}
</style>
Now it works, thank you very much!!!