Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

positioning tables side by side

Status
Not open for further replies.

bcblair

MIS
Feb 17, 2000
45
US
I have a website When you enter its a Flash Page, The bottom button goes to the E Store. This is where my problem is. This program is from Merchentec its called softcart. The page just listed the categories(mine are categorized by manufacturer) and then a few buttons at the bottom. They said to use html to edit it. I started that way but found it easier to download the template edit it in Frontpage and then upload it again. I added Buttons at the top and I added Top Sellers. Everything is fine except the caregories start after the top ten sellers. I would like them to start at the same height vertically. The way it is now you have to page down to see the categories and I think people want know they are there. If someone can tell me how to set the tables side by side without them combining or causing spaces between each category. You can view the source html and let me know how to change that or how to do it in Frontpage. [sig][/sig]
 
Put them in a one-row table, with one table in the first column and the other in the second column.
Code:
<table width=&quot;100%&quot;>
<tr>
  <td width=&quot;50%>
     <table width=&quot;100%>
          FIRST TABLE
     </table>
   </td>
   <td width=&quot;50%>
     <table width=&quot;100%>
          SECOND TABLE
     </table>
   </td>
</tr>
</table>
[sig]<p>nick bulka<br><a href=mailto: > </a><br><a href= </a><br>Get your technical books at Bulka's Books<br>
[/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top