Hi i am building a website and i need to center my links on the page.
Here is a snippet from the html:
<tr>
<!--Navigation-->
<td class="toc;" rowspan="2"></td>
</tr>
</table>
<a href="home.html">Home</a>
<a href="dogs.html">Dogs</a>
<a href="newYork.html">New York</a>
<a href="misc.html">Misc Places</a>
</td>
Here is a snippet from the css:
table, td{border:none;table-layout:fixed;}
.toc{vertical-align:top;
width:110px;
background:#000000;
padding:25px;
text-align:center}
.center {text-align:center}
.right {text-align:right}
.main {text-align:top;padding-left:10px}
Hope you understand my problem and can help somehow.
Andrew Mayo
Here is a snippet from the html:
<tr>
<!--Navigation-->
<td class="toc;" rowspan="2"></td>
</tr>
</table>
<a href="home.html">Home</a>
<a href="dogs.html">Dogs</a>
<a href="newYork.html">New York</a>
<a href="misc.html">Misc Places</a>
</td>
Here is a snippet from the css:
table, td{border:none;table-layout:fixed;}
.toc{vertical-align:top;
width:110px;
background:#000000;
padding:25px;
text-align:center}
.center {text-align:center}
.right {text-align:right}
.main {text-align:top;padding-left:10px}
Hope you understand my problem and can help somehow.
Andrew Mayo