tcemoo
06-24-2004, 03:53 AM
I have been trying to get scrollbar colors to work forever and I'm confused about where to even start. Could someone giv eme the basics of editing scrollbar color
|
View Full Version : Can someone help me? tcemoo 06-24-2004, 03:53 AM I have been trying to get scrollbar colors to work forever and I'm confused about where to even start. Could someone giv eme the basics of editing scrollbar color pb&j 06-24-2004, 03:56 AM go down a bit on this page... http://www.lissaexplains.com/css.shtml or you can do a search in this css forum to find many who asked the same question to find your answer. thanks and welcome to LEIA forums :D tcemoo 06-24-2004, 03:59 AM I looked and I couldn't find anything that explained it fully. They never said exactly where to put it. I'm trying to make a site for my friend's band and the normal scrollbar looks just stupid jazzberry 06-24-2004, 04:16 AM ok when you set up your page you have something similar to the following right? <html> <head> <title>Random Title</title> </head> <body> BLah Blah blah. Yadda Yadda </body> </html> ok now the CSS goes between <head> and </head> so I'd put it after </title> but before </head> . Still with me? <head> <title>Random Title</title> <style type="text/css"> body {scrollbar-face-color : #000000; scrollbar-highlight-color : #000000; scrollbar-3dlight-color : #000000; scrollbar-shadow-color : #000000; scrollbar-darkshadow-color : #000000; scrollbar-track-color : #000000; scrollbar-arrow-color : #000000;} </style> </head> hope that clears it up! tcemoo 06-24-2004, 04:20 AM Thank you very much |