This content has been marked as final.
Show 4 replies
-
1. Re: Table content hover, background color change
mytaxsite.co.uk Dec 10, 2011 4:15 PM (in response to jr4292)jr4292 wrote:
How can I achieve this background color hover effect? Like the table on this page:
If you want all your links to have the same effect then put this code in your style sheet:
a:hover {
background:#73D5FC;
border:1px solid #DDDDDD;
}
Good luck.
-
2. Re: Table content hover, background color change
jr4292 Dec 10, 2011 4:34 PM (in response to mytaxsite.co.uk)yes, but these are not links.
-
3. Re: Table content hover, background color change
mytaxsite.co.uk Dec 10, 2011 4:43 PM (in response to jr4292)jr4292 wrote:
yes, but these are not links.
Well in that case it is even easier by using this code:
td:hover {
background: #73D5FC;
}
Good luck.
-
4. Re: Table content hover, background color change
mytaxsite.co.uk Dec 10, 2011 9:43 PM (in response to mytaxsite.co.uk)Or this code if you want the entire row to be hovered!!
tr:hover {
background-color: #73D5FC;
}
G'Luck.


