PDA

View Full Version : hover over forum


arindra
03-21-2007, 07:56 PM
hi
i had seen this trick / effect before here , but i cant find the post now . do post if you know

In forum home , when you take your mouse over a particular forum , it changes color . I am looking for that
thanks

TheMilkCarton
03-22-2007, 09:12 AM
It's in the "Looking for a vBulletin" thread. Here's the forum you were asking about. http://nsgdistro.com/foro/ (I think anyway :))

Just make a CSS style td.whatever:hover {color:#000000;background:#FFFFFF} And apply the whatever class to the td around the forums.

nexialys
03-22-2007, 10:20 AM
actually, it is "alt1Active" and "alt2Active" that you have to change the background-color from...

TheMilkCarton
03-22-2007, 11:36 AM
What?? I don't think you understood their question. Those are the styles when you check a box in the inline moderation. If arindra wants to do it they can make their own class and call it whatever they want.

Real quick example I did:
Style code:<style type="text/css">
td.active:hover{
background-color: #333366;
}
</style>HTML:<table>
<tr>
<td>
Doesn't change on hover
</td>
<td class="active">
Changes on hover
</td>
</tr>
</table>

arindra
03-22-2007, 01:28 PM
thanks both of you for answering ,
TheMilkCarton , i will try it and update :)