RE: [WSG] ie css rollovers prob

2005-08-20 Thread Edward Clarke
Yes! You're using :hover on the list item not the hyperlink. Remember,
you're coding for IE. Run the hyperlink as display:block and hover that to
give consistent results. IE has no support for :hover on anything other than
the a tag.



having some probs with getting simple css rollovers to work in ie on this
site http://www.elkhornflyrods.com/store/index.cfm

menus on right.

anyone see anything wrong? (well ok, i mean with rollover code)

.linklist li a {
 display: inline;
 text-decoration: none;
 color: #33;
}

.linklist li:hover {
 background-color: #9bc541;
 text-decoration: none;
 color: #33;
}

.linklist ul {
 list-style: none;
 margin: 0px;
 padding: 0px;
 color: #33;
}




**
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list  getting help
**



RE: [WSG] ie css rollovers prob

2005-08-20 Thread csslist
i figured that was it but swore it worked on another site which i went back and check and it didnt doh  has anyone ever mentioned that ie sux?  thanks  :)From: "Edward Clarke" [EMAIL PROTECTED]Sent: Saturday, August 20, 2005 4:14 PMTo: wsg@webstandardsgroup.orgSubject: RE: [WSG] ie css rollovers probYes! You're using :hover on the list item not the hyperlink. Remember,you're coding for IE. Run the hyperlink as display:block and hover that togive consistent results. IE has no support for :hover on anything other thanthe a tag.having some probs with getting simple css rollovers to work in ie on thissite http://www.elkhornflyrods.com/store/index.cfmmenus on right.anyone see anything wrong? (well ok, i mean with rollover code).linklist li a { display: inline; text-decoration: none; color: #33;}.linklist li:hover { background-color: #9bc541; text-decoration: none; color: #33;}.linklist ul { list-style: none; margin: 0px; padding: 0px; color: #33;}**The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list  getting help**