mousover lists
Posted: 30 May 2006 09:43 AM   [ Ignore ]
Newbie
Rank
Total Posts:  6
Joined  2006-03-27

Does anyone know how to do those mouseover unordered lists?
You know the ones when u mouseover over a few lines of text, and it changes the background and sometimes the text and header colors. If you go to ryanwerth.com, and look at the sidebar you can see what im talking about.

Profile
 
 
Posted: 02 June 2006 12:59 AM   [ Ignore ]   [ # 1 ]
Newbie
Rank
Total Posts:  5
Joined  2006-04-08

Just look up about the :hover pseudo-class to apply a mouse over effect.

eg.

.section a:hover {
    background-image:url(image.jpg);
}

Profile