Table/Image Problem

Hi. <br />
1. I am a beginner at table making, and don't understand much of it. But I created a simple table that I thought would work, but unfortunately, it didn't. Anyways, I wanted my table to look like:<br />
<br />
l----- l------------------------l<br />
l l l<br />
l l l<br />
l l l<br />
l l l<br />
l-------------------------------<br />
(Hmm that didn't work... Well I just want my table to be divided into 2 columns, each column with different width) <br />
<br />
Well my table kind of worked, but except, I want my left column to be a different width than the right one. Can anyone tell me how to do that?:confused: <br />
<br />
2. I was wondering how I can write text right below an image. Something like <img src=http://www.webdeveloper.com/forum/archive/index.php/"http://www.com" align="left"><p>This image ...................<br />
I tried that on my website but it didn't work. <br />
<br />
Can anyone help me with those 2 problems?<br />
THANKS!<!--content-->1 Table, th and td all have width attributes. Check one of the online HTML refs.<br />
<br />
2. You can use an inline style:<br />
<img style="display:block;" src=http://www.webdeveloper.com/forum/archive/index.php/"whatever"><br />
Or you can define it nicer in an imbedded or external stylesheet.<!--content-->CSS can do all of this for you, check out the search engines for tutorials, there's plenty :)<!--content-->CSS can do more than that for you, for it can allow you to eschew tables for layout, and use semantic markup with CSS for presentation. Want to learn more? Read why tables for layout is stupid (<!-- m --><a class="postlink" href="http://www.hotdesign.com/seybold/index.html">http://www.hotdesign.com/seybold/index.html</a><!-- m -->).<!--content-->
 
Back
Top