Jump to content

Having trouble with a table


meef_jones

Recommended Posts

I'm making a site and on all of the pages there is a table running down the side. I only have two pages made, and on one page the table works fine and on the other, it isnt reading any of the <tr> tags. It is making the table one big row instead of one big column. This makes no sense because I copied and pasted the coding and just changed the contents of one the cells. Here is coding from the one that works

<table align="left" border="0">   <tr>    <td>     <a href="links.htm">      <img border="0" src="links.bmp">     </a>    </td>   </tr>

And some from the one that doesn't work

<table align="left" border="0">   <tr>    <td>     <a href="index.htm">      <img border="0" src="home.bmp">     </a>    </td>   </tr>

Help Please!!!

Link to comment
Share on other sites

It is making the table one big row instead of one big column.
What? :) If you only have one table cell, there's really no distinction between row and column, is there?
Link to comment
Share on other sites

sorry ive been out of state for a few days. heres the one that works

<table align="left" border="0">   <tr>    <td>     <a href="links.htm">      <img border="0" src="links.bmp">     </a>    </td>   </tr>   <tr>    <td>     <a href="faq.htm">      <img border="0" src="faq.bmp">     </a>    </td>   </tr>   <tr>    <td>     <a href="xbox.htm">      <img border="0" src="xbox.bmp">     </a>    </td>   </tr>   <tr>    <td>       <a href="ps2.htm">      <img border="0" src="ps2.bmp">     </a>    </td>   </tr>   <tr>    <td>     <a href="about.htm">      <img border="0" src="about.bmp">     </a>    </td>   </tr>   <tr>    <td>     <a href="contact.htm">      <img border="0" src="contact.bmp">     </a>    </td>   </tr>  </table>

And the one that doesn't work

<table align="left" border="0">   <tr>    <td>     <a href="index.htm">      <img border="0" src="home.bmp">     </a>    </td>   </tr>   <tr>    <td>     <a href="faq.htm">      <img border="0" src="faq.bmp">     </a>    </td>   </tr>   <tr>    <td>     <a href="xbox.htm">      <img border="0" src="xbox.bmp">     </a>    </td>   </tr>   <tr>    <td>       <a href="ps2.htm">      <img border="0" src="ps2.bmp">     </a>    </td>   </tr>   <tr>    <td>     <a href="about.htm">      <img border="0" src="about.bmp">     </a>    </td>   </tr>   <tr>    <td>     <a href="contact.htm">      <img border="0" src="contact.bmp">     </a>    </td>   </tr>  </table>

Thanks for the help!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...