vForums Support > Programming & Coding :: Programming Discussion :: > Problem with my website.

Problem with my website. - Posted By Nick (nickb) on 22nd Mar 08 at 7:13am
http://freunion-home.co.nr/

I have this problem with viewing my site in IE, it shows the navigation part beside the CBox, but in FF it looks the way it is supposed to Navigation above the Cbox,

Thanks,
Darkmage

Re: Problem with my website. - Posted By Marc (cr0w) on 22nd Mar 08 at 4:19pm
The tables on your site are nested completely wrong; they're only running fine in FF because FF is smart enough to auto-correct the errors for you. {Tongue Out}

Anyway, replace this:

Code:
 
  1. <font size="2"> <table border="1">
  2. <tr>
  3. <th><font color="#FFFFFF">.:Navigation:.<font></th>
  4. </tr>
  5. <tr>
  6. <td><CENTER><A href="http://freunion-home.co.nr" target="_parent"><font color="#FFFFFF">Home</A></CENTER></td>
  7. </tr>
  8. <tr>
  9. <td><CENTER><A href="http://freunion.vforums.co.uk" target="_parent"><font color="#FFFFFF">Forum</A></CENTER></td>
  10. </tr>
  11. <tr>
  12. <td><CENTER><A href="http://freunion-plot.co.nr" target="_parent"><font color="#FFFFFF">Plot</A></CENTER></td>
  13. </tr>
  14. </tr>
  15. <td><CENTER><A href="http://www.freewebs.com/forbiddenreunion/myspace.html" target="_parent"><font color="#FFFFFF">Myspace</A></CENTER>
  16. <tr>
  17. <td><CENTER><A href="http://freunion-affiliates.co.nr" target="_parent"><font color="#FFFFFF">Affiliates</A></CENTER></td>
  18. </td>
  19. </CENTER>
  20. </td>
  21. <BR>
  22. <BR>
  23. </table></tr>
  24. <td class="windowbg" align="center" class="bordercolor" >
  25. <font size=2> <border="1">
 


With this:

Code:
 
  1. <font size="2"> <table border="1">
  2. <tr>
  3. <th><font color="#FFFFFF">.:Navigation:.<font></th>
  4. </tr>
  5. <tr>
  6. <td><center><A href="http://freunion-home.co.nr" target="_parent"><font color="#FFFFFF">Home</A></center></td>
  7. </tr>
  8. <tr>
  9. <td><center><A href="http://freunion.vforums.co.uk" target="_parent"><font color="#FFFFFF">Forum</A></center></td>
  10. </tr>
  11. <tr>
  12. <td><center><A href="http://freunion-plot.co.nr" target="_parent"><font color="#FFFFFF">Plot</A></center></td>
  13. </tr>
  14. </tr>
  15. <td><center><A href="http://www.freewebs.com/forbiddenreunion/myspace.html" target="_parent"><font color="#FFFFFF">Myspace</A></center></td>
  16. </tr>
  17. <tr>
  18. <td><center><A href="http://freunion-affiliates.co.nr" target="_parent"><font color="#ffffff">Affiliates</A></center></td>
  19. </td>
  20. </tr>
  21. </table>
  22. </td>
  23. </tr>
  24. <tr>
  25. <td class="windowbg" align="center" class="bordercolor" >
  26. <font size=2>
 

Re: Problem with my website. - Posted By Nick (nickb) on 23rd Mar 08 at 3:37am
Thanks Marc its fixed ^_^

Re: Problem with my website. - Posted By Marc (cr0w) on 23rd Mar 08 at 3:41am
No worries. {Smile}