CSS Encoding
Note:  All of these CSS codes require at least IE 4.0 and may not work on Netscape
No Underlines On Links

<style type="text/css">
<!--
A:link { text-decoration: none }
A:visited { text-decoration: none }
-->
</style>

Lines Above And Below Links

<style type="text/css">
<!--
A:hover { text-decorations: overline underline }
-->
</style>

Text Links With A Background Color

<style type="text/css">
<!--
A:hover { color: #ff0000; background-color: #ffff00; }
-->
</style>

Text Links With Mouseover Color Change

<style type="text/css">
<!--
A:hover { color: #ff0000 }
-->
</style>

Non-Tiling Centered Background

<style type="text/css">
<!--
BODY { background: #ffffff url(filename.gif) no-repeat center }
-->
</style>

Use Images As Bullets

<UL style="list-style-image: url(filename.gif); color: #9400d3; font-weight: bold; font-size: 12pt;"
<LI>Item</LI>
<LI>Item</LI>
<LI>Item</LI>
</UL>

Background Color Behind Text

<font style="background-color: #e6e6fa; color: #9400d3; font-size: 14pt; font-weight: bold;">
Your Text Here
</font>

Background Image Behind Text

<font style="background-image:url('filename.jpg'); color: #000000; font-weight: bold; font-size: 16pt;">
Your Text Here
</font>

Colored Scrollbars

<style type="text/css">
<!--
BODY { scrollbar-face-color: #000000; scrollbar-shadow-color: #000000; scrollbar-highlight-color: #000000; scrollbar-3dlight-color: #000000; scrollbar-darkshadow-color: #000000; scrollbar-track-color: #000000; scrollbar-arrow-color: #000000; }
-->
</style>

Custom Cursor

<style type="text/css">
<!--
BODY { cursor:url("mycursor.cur"); }
-->
</style>
Note:  All Hexidecimal Coloring(I.E ff0000) can be changed to make another color
Note: There are many more CSS codes out there than what I have shown you these are just some of the more easy to use codes that your can put on you page. Check back later and I may have more.
Note: All of these CSS codes will either go into the <HEAD> of your web page or into an item tag.
Hosted by www.Geocities.ws

1