djleli 0 Report post Posted August 11, 2004 to change the colour of the scrollbar just change the html colour coding [/br]Add to the <HEAD> of your page. [br][/br]<style> [br]<!-- [/br]BODY{ [br]scrollbar-face-color:#75EA00; [/br]scrollbar-arrow-color:brown; [br]scrollbar-track-color:#EEEEEE; [/br]scrollbar-shadow-color:''; [br]scrollbar-highlight-color:''; [/br]scrollbar-3dlight-color:''; [br]scrollbar-darkshadow-Color:''; [/br]} [br]--> [/br]</style> Share this post Link to post Share on other sites
SilverBoarder 0 Report post Posted August 11, 2004 Thats accually not HTML at all its CSS or Cascading Style Sheets. CSS Allows the web builder to add specifications to thier HTML Document.Go here to find out more about it: W3C Schools Share this post Link to post Share on other sites
loc 0 Report post Posted August 12, 2004 You can actually define the background color for the scrollbar in your marquee tag.Here is an example.<marquee bgcolor=000000> Hello </marquee> (black background)Its simpler than using styles. Share this post Link to post Share on other sites
Bash 0 Report post Posted August 12, 2004 i made a topic about these before, about a css scrollbar generator (makes it easier than playing around with the code yourself):http://forums.xisto.com/topic/710-css-scrollbar-generator/ Share this post Link to post Share on other sites
Gamesquare 0 Report post Posted August 12, 2004 You can actually define the background color for the scrollbar in your marquee tag.Here is an example.<marquee bgcolor=000000> Hello </marquee> (black background)Its simpler than using styles.That's the background of a marquee, not the scrollbars. Share this post Link to post Share on other sites
loc 0 Report post Posted August 16, 2004 Oh, I thought you guys were talking about text scrolling bars. Hence, Marquee. In that case, here is a code using CSS... it's the simplest way. Insert this into the head of your website, and fill in the colors appropriately for your website:<style type="text/css"><!--BODY{scrollbar-3d-light-color:000000; scrollbar-arrow-color:000000; scrollbar-base-color:000000; scrollbar-dark-shadow-color:000000; scrollbar-face-color:000000; scrollbar-highlight-color:000000; scrollbar-shadow-color:000000;}--></style> Share this post Link to post Share on other sites
zip_mc 0 Report post Posted August 21, 2004 i was told that u can put that into your html code aswell... but i never tired using it.. i jsut went with CSS Share this post Link to post Share on other sites
Kovi 0 Report post Posted September 15, 2004 Be wary of using it, though. I'm not entirely sure that changing the scrollbar is a W3C standard, as it put up errors when I tried to validate CSS that used it. While I think it looks nice done properly, just be careful. Also, if it is valid, could someone give me a link to the W3C page that says so? I can't seem to find it in their list of valid CSS tags. Share this post Link to post Share on other sites