PDA

View Full Version : Mouse over a thread/topoic hover color?


ayoko555
06-11-2007, 05:43 AM
How do I edit the template if I want the cell color change when mouse over it?
Like this website: http://forums.slickdeals.net/forumdisplay.php?sduid=40452&f=9

What mod would I need and how?

Thanks!

Ohiosweetheart
06-17-2007, 06:06 AM
That's special coding, I don't believe there is a mod for it.

Kungfu
06-19-2007, 04:12 AM
well the easiest thing you could do is css puesdo script.

.alt1:hover {
background-color: #EBEFF2;
}

something like that. But this would be used for anything with the class alt1.

the second thing you could do is edit the threadbit template

find

<td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]">

change to <td class="alt1" id="td_threadtitle_$thread[realthreadid]" title="$thread[preview]" OnMouseOver="this.style.background='white';" onMouseOut="this.style.background='red url(images/alt1.gif) repeat';">

and change the colors that you want to whatever you want also the background image to the original alt or color.

da420
06-19-2007, 05:06 AM
This is in the template mods section.