Wonder

Css

Css is a stylesheet used for determining how your site is going to look. Here, I am going to demonstrate an example stylesheet that I use in most of my pages

Links

A:link { text-decoration: none; color:#FFFFFF; }

A:visited { text-decoration: none; color:#FFFFFF; }

A:active { text-decoration: none; color:#FFFFFF; }

A:hover { text-decoration: none; color:#FFFFFF; background-image: url('your url here');

background-color: #000000; cursor: crosshair;

header {font-family: verdana;

color:#FFFFFF; border: 1px solid #FFFFFF }

p {font-family: verdana; color:#FFFFFF }

All of this right here is how you want your links to look like.
The text decoration is what you want your link to look like. You can choose from many choices including these: overline underline, underline, and none.
A:link is what you want your link to look like whithout having to click on it or place your mouse over it.
A:Visited is what you want your link to look like after you have already clicked on that link.
A:hover is what you would like your link to look like when you place your mouse over the link.
If you want a background image when you hover over your link, make a small background for your link, and upload it. Then place the url in the provided space
You may also choose what color you want your link to be when you hover over it. The cursor area is what you want your cursor to look like when you hover over a link.
You may have noticed that when you hover over some of my links like this one You can see a type of border. This is called a header. Your header can take the form of different borders such as:solid or dotted

Body

body { background-position: 0% 0%; margin:0; padding:0; scroll:auto; your:#000000; letter-spacing:; font-family:verdana; cursor: crosshair; color:#FFFFFF; font-size:9px; scrollbar-highlight-color:#000000; scrollbar-3dlight-color:#000000; scrollbar-shadow-color:#000000; scrollbar-darkshadow-color:#000000; scrollbar-track-color:#000000; scrollbar-arrow-color:#FFFFFF; scrollbar-face-color:#000000; background-color:#000000; background-repeat:repeat; background-attachment:scroll} td { font-family: verdana; color: #FFFFFF; padding:0cm; } table { border:1px dotted #FFFFFF; Font-size:9px; color:#FFFFFF;} input, textarea { border:1px dotted #FFFFFF; background:url('../../../Local%20Settings/Temporary%20Internet%20Files/Content.IE5/4LQBCLEV/yourimage.gif'); font-family: verdana; font-size:9px; color: #FFFFFF; } .header { border:1px dotted #FFFFFF; background:url('../../../Local%20Settings/Temporary%20Internet%20Files/Content.IE5/4LQBCLEV/yourimage.gif'); font-family: verdana; color: #FFFFFF; }