Implementing CSS...

liunx

Guest
With any luck, this will be my last post for a while.

:D

Okay, take a look at this:

<!-- m --><a class="postlink" href="http://www.geocities.com/stmasi">http://www.geocities.com/stmasi</a><!-- m -->

How could I...

Move the left navigational div to the right?
Make the "active" link change background color to blue?
Make the "hover" link change background color to red?
Make the "visited link change font color to green?
Make all the link changes listed here work together in the appropriate combinations therein?

Thanx.Originally posted by stmasi
Move the left navigational div to the right?
Make the "active" link change background color to blue?
Make the "hover" link change background color to red?
Make the "visited link change font color to green?
Make all the link changes listed here work together in the appropriate combinations therein?

Thanx.

Logically, float the menu right, and change the content's left margin to right-margin.

a:active {
color: #00F;
}

a:hover {
background-color: #F00;
}


a:visited {
color: #080;
}

Hope that helps...
 
Back
Top