Forum Moderators: mack
Right now all I have is a table row, with a background color in it, on top of another table, with text in it. Is there something out there to create something like that, or even purchase them?
Second, how do you thin a border thickness down to less than "1". I use a border thickness of 1 and it is too think. I see site all over that have nice thin border arouns their tables, how is this done?
You can do this manually, by creating table cells with the rounded corners in them.
A more versatile approach is to use Cascading Style Sheets (CSS) which will basically do the same - placing graphic elements in the borders - but in a more sophisticated and "cleaner" manner. However as a newbie in HTML the whole CSS conecpt might be a bit intimidating. Especially if you have deadlines to meet plain HTML might be the easiert choice.
nice thin borders around tables are usually done with CSS - as others have said.. it's not that tricky.. you can do it like this...
<style>
table {border-collapse: collapse;}
td {border: 1px solid #000;}
</style>
<table>
<tr>
<td> this is my table cell</td>
<td> this is another one</td>
</tr>
</table>
this will apply a 1 pixel thick black solid border around all table cells. the bit that says "border collapse".. that just tells the table not to double up the borders .. so cells next to each other, each with a 1 px thick border, won't appear to have a 2 px thick border.
does this help?
Lana
(whoops.. had to fix a typo!.. must learn to preview)
Includes links to resources.
<table cell spacing="1" cell padding="3" border="0">
<tr>
<td width="50%" background="path/roundedcornerimage.jpg">
content</td>
<td width="50%" background="path/roundedcornerimage.jpg">
content</td>
</tr>
</table>
just a thought that I hope can help you out.
--esteban