If you want your links to change color
copy the code below after
<title></title>
<style
type="text/css"> <!-- A:link { text-decoration: none; color:#YourColor
} A:visited { text-decoration: none; color:#YourColor } A:hover { text-decoration:
none; color:#ffff40 } --> </style>
|
The #ffff40
is the color yellow,you will need to change this if you want another color
|
If you want to use the color scroll copy the code below after
<title></title>
<style type="text/css">
body {
scrollbar-arrow-color: white;
scrollbar-base-color: #512019;
scrollbar-dark-shadow-color: black;
scrollbar-track-color: #6b4a1d;
scrollbar-face-color: black;
scrollbar-shadow-color: white;
scrollbar-highlight-color: silver;
scrollbar-3d-light-color: black;
}
</style> |
|