Green Finch
Links
If you haven't already, you might want to check out the Getting Started tutorial. I'll be using some terms from there, and it will help you understand how to put the following information to use.To edit the bold, underlined, and italic text on your page, you'll need to know how to edit fonts. Borders and backgrounds can also be used. If you haven't yet, I recommend going back and reading the tutorials on editting those areas.
The section titles you'll want to use are simple.
Active Links: a:active
Hover: a:hover
Visited: a:visited
Active links are just the links on your page that haven't been clicked or anything. The hover edits what the link looks like when you "hover" over it with your mouse. Visited links are links that have been clicked. Here's an example of how the active link area of my stylesheet looks:
a:active {
font-family: arial;
color: #000000;
font-size:10px;
text-transform:none }
The hover and visited are set up that same way, except the a:active with be replaced with either a a:hover or a:visited. More properties can be added to make it fancier, but I just stuck with the basics to give you an example.
Other
|
|




















