A
Anonymous
Guest
I'm refactoring a page with a responsive template, and I'd like to understand how I can replace this table with DIVs:
Can someone point me in the right direction here?
Code:
<p align="center">
<table align="center" cellpadding="0" bgcolor="#FFFFFF" width="890" border="1">
<tr>
<td>
<div id="sse1">
<div id="sses1">
<ul>
<li><a href="/pages/classics.php">Classics</a></li>
<li><a href="/pages/history.php">History</a></li>
<li><a href="/pages/literature.php">Literature</a></li>
<li><a href="/pages/nonfiction.php">Non-Fiction</a></li>
</ul>
</div>
</div>
</td>
</tr>
</table>
</p>
Can someone point me in the right direction here?