Link selecter problem

admin

Administrator
Staff member
I have already used my a:visted,A:active,A:Link and A:hover sytle selecters for my main links.<br />
<br />
Now i have a list of other links which i also need to use the selecters on but different ones. Any ideas here.<br />
<br />
Additional how would i make a different color scroll such as the one on this site.<br />
<br />
Ive done once or twice but cant remember how<br />
<br />
Thanks in advance<!--content-->you could do this with CSS classes<br />
<br />
eg,<br />
a.new_type:visited<!--content-->you can have many just rename them<br />
<br />
a.another:visted,A.another:active,A.another:Link and A.another:hover <br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"page.html" class="another">link</a><br />
<br />
and the color for the scroll bar are like this<br />
<br />
<style><br />
body {scrollbar-face-color: #2A3952;scrollbar-shadow-color: #333333;<br />
scrollbar-highlight-color: #6E88B1;<br />
scrollbar-3dlight-color: #000000;<br />
scrollbar-darkshadow-color: #000000;<br />
scrollbar-track-color: #445A80;<br />
scrollbar-arrow-color: #FFFFFF;<br />
}<br />
</style><!--content-->Cheers folks.<!--content-->
 
Back
Top