Emily
30-Sep-2004, 11:34 PM
Does anyone know how to do this?
The following worked on PF4.
I didn't find a row4 in 2.0f...
---------------------------------------
FORUM / TOPIC CELL ROLLOVER EFFECT
---------------------------------------
Very easy hack!!
-------------
Step 1
-------------
In the admin control panel go to Skin Manager, then Advanced CSS editing window and search for row4.
Below row4 put
.row4b { background-color: #aabbcc; cursor: hand }
You can change the color to anything you want.
Save the template.
------------
Step 2
------------
Go to Skin manager, then skin template HTML, then Board Index and edit ForumRow.
Find <td class="row4"> (should be the third line down)
Replace that with
<td class="row4" onmouseover="this.className = 'row4b'" ; style.cursor='hand'" onMouseOut="this.className = 'row4'" onclick="location.href='{ipb.script_url}showforum={$data['id']}'">
Save the template
-------------
Step 3
-------------
Go to Skin manager, then skin template HTML, then Forum Index and edit Render Forum Row.
Find <td class='$class1' valign='middle'>
Replace that with
<td class="row4" onmouseover="this.className = 'row4b'" ; style.cursor='hand'" onMouseOut="this.className = 'row4'" onclick="location.href='{ipb.script_url}showtopic={$data['tid']}'" valign='middle'>
Save the template
Be sure to rebuild the skin set cache and you are all set. :)
The following worked on PF4.
I didn't find a row4 in 2.0f...
---------------------------------------
FORUM / TOPIC CELL ROLLOVER EFFECT
---------------------------------------
Very easy hack!!
-------------
Step 1
-------------
In the admin control panel go to Skin Manager, then Advanced CSS editing window and search for row4.
Below row4 put
.row4b { background-color: #aabbcc; cursor: hand }
You can change the color to anything you want.
Save the template.
------------
Step 2
------------
Go to Skin manager, then skin template HTML, then Board Index and edit ForumRow.
Find <td class="row4"> (should be the third line down)
Replace that with
<td class="row4" onmouseover="this.className = 'row4b'" ; style.cursor='hand'" onMouseOut="this.className = 'row4'" onclick="location.href='{ipb.script_url}showforum={$data['id']}'">
Save the template
-------------
Step 3
-------------
Go to Skin manager, then skin template HTML, then Forum Index and edit Render Forum Row.
Find <td class='$class1' valign='middle'>
Replace that with
<td class="row4" onmouseover="this.className = 'row4b'" ; style.cursor='hand'" onMouseOut="this.className = 'row4'" onclick="location.href='{ipb.script_url}showtopic={$data['tid']}'" valign='middle'>
Save the template
Be sure to rebuild the skin set cache and you are all set. :)