Scroll bar codes not working on my web page

  • Thread starter Thread starter Tammynv
  • Start date Start date
T

Tammynv

Hello,

I am not sure if this is the right thread or not but I have windows XP
home edition and have recently got a web code to place in a blog page
to change the color/appearance of my scroll bars but when I add the
code nothing happens. Is there some box that I need to check or
uncheck in my settings? I can easily see other peoples colored scroll
bars when I visit their pages...the codes won't change mine though. I
have tried 3 different codes from 3 different generators. Please help.


Tammy
 
Hi David,

Do you mean details about what web site? It is a myspace website and I
copied and pasted codes to change my tool bars from one of the myspace
graphic websites but none of them work on my copmputer but I see other
pages with different colored scroll bars. I will check with the site
as well. Thanks.
 
Hi,

On the assumption that you can use HTML try this...

<html>
<head>
<title>
MY WEBSPACE
</title>
</head>

<body>

<style>
body {
scrollbar-base-color: #426384;
scrollbar-face-color: #3A5374;
scrollbar-track-color: #426384;
scrollbar-arrow-color: #c0c0ff;
scrollbar-highlight-color: #3A5374;
scrollbar-3dlight-color: #3A5374;
scrollbar-shadow-color: #3A5374;
scrollbar-darkshadow-color: #3A5374
}
</style>

YOUR HTML GOES HERE

</body>
</html>

Hope that helps,

Andy
 
I got it! I just needed to go into my tools, internet options, then the
colors button on the bottom left, and uncheck Use windows colors. I
re-added a code to my web page and it worked. :)
 
Back
Top