ZombieAndy |
08-03-2007 09:59 PM |
Thanks alot for your comments guys, it was nothing really just a small cosmetic mod i wanted for a while. Really sorry i havn't been around to answer questions but ive been snowed under at work and on my own forums.. im sure you guys know how it is, i suppose i shouldn't of marked it as supported or check back more often lol..
Anyway, ive turned on email subscription so if anyone else has any probs, i will do my best to answer them.
Quote:
Originally Posted by MARKETPROFITS
(Post 1196694)
Hey, how can I choose different colors on mouseover?
|
It uses ALT1 and ALT2 colours defined in your style, you just need to change those to change the colours it uses.
Quote:
Originally Posted by Chris-777
(Post 1212662)
This is pretty similar (rather, almost exactly the same) as my mouseover hack for 3.5.
|
Well i did say i searched for this before i made it, i couldn't find a similar hack at the time of release.
Quote:
Originally Posted by Realm of Horror Comics
(Post 1309235)
How can I make it so that on the forum homepage, only the actual forum links are clickable, and not the entire cell?
Thanks!
|
open template "threadbit" and find
Code:
<td class="alt1" id="td_title_$thread[realthreadid]" title="$thread[preview]" style="cursor:hand;" onmouseover="this.className='alt2Active';" onmouseout="this.className='alt1Active';" onclick="window.location.href='<if condition="$show['gotonewpost']">showthread.php?$session[sessionurl]goto=newpost&t=$thread[threadid]<else />showthread.php?$session[sessionurl]t=$thread[threadid]$thread[highlight]</if>';">
and replace with
Code:
<td class="alt1" id="td_title_$thread[realthreadid]" title="$thread[preview]" style="cursor:hand;" onmouseover="this.className='alt2Active';" onmouseout="this.className='alt1Active';"<else />
|