category cell color on mouseover ?
Sorry, you don't have permission to post posts. Log in, or register if you haven't yet.
Comments on category cell color on mouseover ?
Forum Regular
Usergroup: Customer
Joined: Jul 09, 2008
Total Topics: 22
Total Comments: 110
Can anyone provide a sample of how to make the category change background color on mouseover ?
Thank you.
Forum Regular
Usergroup: Customer
Joined: Apr 03, 2007
Location: NY & PA
Total Topics: 94
Total Comments: 339
mariow,
You can create a new style for your categories
.catbutton {background-color: #CCCC99;}
and then add the style to your category td
<td class="catbutton" onmouseover="style.backgroundColor='#CCCC66';"onmouseout="style.backgroundColor='#CCCC99'">
Hope this helps.
Forum Regular
Usergroup: Customer
Joined: Jul 09, 2008
Total Topics: 22
Total Comments: 110
Thanks Hai,
But when looking around i solved it like this:
td.category:hover {
background-color: #fdfedf;
color: #aeaeab;
}
that worked great...