Heres a beginners guide to CSS. This part 1 of many to come. If you find this helpful, please click the Digg button at the end to show your appreciation.
---------
Q. How do I remove the underlining from links? A. Using a Stylesheet
<style type="text/css">
A:link {text-decoration: none}
A:visited {text-decoration: none}
A:hover {text-decoration: none}
A:active {text-decoration: none}
</style>
Q: How do I get rid of the blue border around images that I've made into links? A. Add this to your CSS style information:
img {border: none; } Q: How do I get my pages to go to the edges of the window? A. Add this to your body CSS style:
{margin: 0px; padding: 0px; } How do I change the color of the scrollbar? <style>
<!--BODY {scrollbar-face-color:#000000;
scrollbar-shadow-color:#ffffff;
scrollbar-highlight-color:#000000;
scrollbar-3dlight-color:#993366;
scrollbar-darkshadow-color:#000000;
scrollbar-track-color:#000000;
scrollbar-arrow-color:green;}-->
</style> This only works for IE5.1+. It doesn't work in any current version of Netscape. Q: How do I make links change on-hover? A. <style type="text/css">
a:hover {text-decoration:overline)
</style>
<style type="text/css">
a:hover {text-decoration:underline)
</style>
<style type="text/css">
a:hover {text-decoration:line-through)
</style>
<style type="text/css">
a:hover {text-decoration:none)
</style>
Part 2 coming soon.
Geoserv.