Blockquote Tutorial
This code is to be placed inside your style.css page.
You can mess around with this code, and figure out how it works, and what you think looks the best, but here's the basic:
a.nav:link, a.nav:visited, a.nav:active
{
text-decoration: none;
font-size: NUMBERpt;
line-height: NUMBERpt;
color: #COLOR;
background-color: #COLOR;
display: block;}
Now, if you want the link to change when you hover your cursor over it, put this code right after that one:
a.nav:hover
{
text-decoration: none;
font-size: NUMBERpt;
line-height: NUMBERpt;
color: #COLOR;
background-color: #COLOR;
display: block;}
What the codes mean
Text-decoration: This refers to whether or not you want the links to have underlines, overlines, strike-through, etc.
Font-size: Just means what size you want the font in your link to be.
line height: Is how tall you want the block height to be.
Color: This will be the color of your font (not the color of the block itself.)
Background-color: This will be the color of your block, behind your text.
Display: block Is what makes your link in block form.





