[css-d] table row highlighting?

2006-09-25 Thread [EMAIL PROTECTED]
I have this in my css and it works in Firefox: tr.vc_row_even:hover td { background-color: #fff6bf; } tr.vc_row_odd:hover td { background-color: #fff6bf; } How do I get this to work in IE? I mean I want to highlight the table rows when a users hovers over the row... it works great in

Re: [css-d] table row highlighting?

2006-09-25 Thread Christoph Schüßler
How do I get this to work in IE? I mean I want to highlight the table rows when a users hovers over the row... IE doesn't support :hover on tablerows. Try including csshover.htc (http://www.xs4all.nl/~peterned/csshover.html) in your stylesheet. -- Christoph Schüßler

Re: [css-d] table row highlighting?

2006-09-25 Thread cj
On 9/25/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have this in my css and it works in Firefox: tr.vc_row_even:hover td { background-color: #fff6bf; } tr.vc_row_odd:hover td { background-color: #fff6bf; } How do I get this to work in IE? I mean I want to highlight the table

Re: [css-d] table row highlighting?

2006-09-25 Thread Brian Cummiskey
[EMAIL PROTECTED] wrote: anyway to do this in CSS for IE? In IE the table row is not highlighted... IE doesn't support any pseudo classes, except :hover on the a element. There are work around's, such as csshover.htc, which is a JS library. http://www.xs4all.nl/~peterned/csshover.html