View Single Post
  #1 (permalink)  
Old Nov 9th, 2007, 06:38
Aerdan Aerdan is offline
Junior Member
Join Date: Nov 2007
Location: Michigan
Age: 22
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
Changing these Tables

Hello,

I'm in the process of remaking my guild's website, and I'm redoing the code so that tables don't make the layout anymore (yay!), however, I have a couple of problems. All the code is clean and I get no errors, however, I want to know if it's possible to fix the couple of tables included in this short page.

http://www.ascendo-tuum.com/atbeta/index.php

Check the source code. By learning how to fix this table issue so that it is CSS-driven, I shouldn't have as many problems making the rest of the site, but I want to make sure it's being put together correctly from the start! Thanks in advance.

Code in Question:

Code: Select all
<div id="admin">
    <div id="adminlogo">
    <table cellpadding="0" cellspacing="0" border="0">
        <tr>
        <td class="adminmenu"><a href="index.php?p=admin&amp;mod=mmanagement">Member Management</a></td>
        <td class="adminmenu"><a href="index.php?p=admin&amp;mod=recruitment">Recruitment Notices</a></td>
        <td class="adminmenu"><a href="index.php?p=admin&amp;mod=progression">Progression Admin</a></td>
        <td class="adminmenu"><a href="index.php?p=admin&amp;mod=rmanager">Review Manager</a></td>
        </tr>
    </table>
    </div>
</div>

<div id="wrapper">
    <div id="topbar">
    <table cellpadding="0" cellspacing="0" border="0">
        <tr>
        <td class="topbarleft">Left Text</td>
        <td class="topbarright">Right Text</td>
        </tr>
    </table>
    </div>
</div>
Reply With Quote