Tables

User 2220258 Photo


Registered User
5 posts

I have a website that needs to use tables for some of it's pages. How do I do this in VSD ??

Thanks !!
User 187934 Photo


Senior Advisor
20,193 posts

You will need to create the tables in another HTML editor then insert the code with the HTML box tool.:)
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 422767 Photo


Registered User
259 posts

If you don't know tables, here's the basics:


<table>
<tr>
<td> First Column, First Row </td>
<td> First Column, Second Row </td>
</tr>
<tr>
<td> Second Column, First Row </td>
<td> Second, Second Row </td>
</tr>
</table>
Aren't you a little short for a Storm Trooper?
User 1948478 Photo


Senior Advisor
1,850 posts

Zac wrote:
If you don't know tables, here's the basics:

<table>
<tr>
<td> First Column, First Row </td>
<td> First Column, Second Row </td>
</tr>
<tr>
<td> Second Column, First Row </td>
<td> Second, Second Row </td>
</tr>
</table>

...and these would be the 'slightly corrected' basics ;) :
<table>
<tr>
<td> First Row, First Column </td>
<td> First Row, Second Column </td>
</tr>
<tr>
<td> Second Row, First Column </td>
<td> Second Row, Second Column </td>
</tr>
</table>
User 364143 Photo


Guest
5,410 posts

hehe :D
CoffeeCup... Yeah, they are the best!
User 422767 Photo


Registered User
259 posts

hehe... oops
Aren't you a little short for a Storm Trooper?

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.