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&mod=mmanagement">Member Management</a></td>
<td class="adminmenu"><a href="index.php?p=admin&mod=recruitment">Recruitment Notices</a></td>
<td class="adminmenu"><a href="index.php?p=admin&mod=progression">Progression Admin</a></td>
<td class="adminmenu"><a href="index.php?p=admin&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>