Rancisis
Jedi Trainer
It seems that the navigation thing (the light-up buttons, like the "Underground") on the main page doesn't work for Netscape users.
Something that's starting to bug me, 'cause I just switched to using Netscape.
And since those link don't work for Netscape, it's real hard to view anything on your site...
I found a sollution for the problem though...
Instead of using this code:
Use this:
This one does work with Netscape, I know this because I'm using this code on my own website...
I hope you understand what I changed, basicly I removed the "a href" thing and replaced it with a "onClick="location.href='" in the td...
--- Edit ---
You might take notice that your CODE tag doesn't parse right either, my post looked all screwy.
Changed it to the PHP now, tht one does look nice, with the color sheme and all
Something that's starting to bug me, 'cause I just switched to using Netscape.
And since those link don't work for Netscape, it's real hard to view anything on your site...
I found a sollution for the problem though...
Instead of using this code:
PHP:
<tr> <a href="http://www.thebothanspy.com">
<td bgcolor="#454545" style="padding-left: 5 px" onMouseover="this.style.backgroundColor='#333333'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#454545';" height="25"><font size="3" color="white" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"><b>Home</b></font></td>
</a> </tr>
Use this:
PHP:
<tr><td onClick="location.href='http://www.thebothanspy.com';" bgcolor="#454545" style="padding-left: 5 px" onMouseover="this.style.backgroundColor='#333333'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#454545';" height="25"><font size="3" color="white" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"><b>Home</b></font></td></tr>
This one does work with Netscape, I know this because I'm using this code on my own website...
I hope you understand what I changed, basicly I removed the "a href" thing and replaced it with a "onClick="location.href='" in the td...
--- Edit ---
You might take notice that your CODE tag doesn't parse right either, my post looked all screwy.
Changed it to the PHP now, tht one does look nice, with the color sheme and all
