Topic: tr:hover

Im usually pretty good at fixing this stuff on my own, but I simply cannot get the tr:hover to work on the tables shown here: http://orioles-nation.com/2011/02/28/re … -opener/2/

I need them to have a background color when you over over the tr

Re: tr:hover

tr:hover with a background element should work (worked for me when I tested it anyway). Only thing I can think of is that maybe the fact that the two tables are nested inside another table might be messing things up. Perhaps try removing the outer table and put them side-by-side using "display: inline;" instead (this is a better way to do it style-wise anyway, using tables for laying out screen elements is generally not considered best practice).

Re: tr:hover

charlesb wrote:

tr:hover with a background element should work (worked for me when I tested it anyway). Only thing I can think of is that maybe the fact that the two tables are nested inside another table might be messing things up. Perhaps try removing the outer table and put them side-by-side using "display: inline;" instead (this is a better way to do it style-wise anyway, using tables for laying out screen elements is generally not considered best practice).

Sorry that should be "float: left;" on each of the tables, not "display: inline" if you choose to try this.