PDA

View Full Version : Forum box as link?


kingmotox
09-07-2008, 04:00 AM
Is there anyway i can make the forum and last post boxes links to the forums and last posts? I hope that makes sense.

THanks

Princeton
09-07-2008, 04:45 PM
totally confused :(

a picture is worth a thousand words

upload a screenshot

kingmotox
09-07-2008, 11:19 PM
to click anywhere in the red box to go to either the forum or the last post on the right

kingmotox
09-08-2008, 11:33 PM
I know there is a way to have this happen can someone help?

kingmotox
09-13-2008, 11:56 PM
Back to the top

gfxhelp.com
09-14-2008, 05:04 AM
You can do it with javascript and applying it to the table row.

<tr style='font-size:11px;' onMouseOver=\"this.style.cursor='pointer';this.bgColor='#666666' ;this.style.color='#FFFFFF';\" onMouseOut=\"this.bgColor='#555555';this.style.color='#FFFFFF'; \" onclick=\"JavaScript:window.open('".lg_link($server['o']['id'])."','_parent');\">

This code is unrelated to vb, but it makes it so when you mouse over a row it changes background color and when you click it, it goes to a url. It could be made to work with vb. Also here's a basic tutorial showing how to make tables clickable.

http://radio.javaranch.com/pascarello/2004/12/30/1104419159000.html

Hope it helps...