Forum Moderators: not2easy
CSS looks like this:
.270box {
width: 270px;
}
--
I have it set in a table with two columns, each 50% and the table is 98%. I just don't want the text under the images to expand with the sliding table.
What am I doing wrong?
Thanks again.
You missed out a > on the td before <p class="270box">.
You also missed out </td> from the <td width="50%">
You had two <tr valign="top">
And I would avoid starting any css with numbers.
Try this:
<table width="98%" border="0" align="center" cellpadding="20" cellspacing="0" class="tablestuff">
<tr valign="top">"
<td width="50%"> </td>
<td><p class="box270"> Text goes here.</p></td>
</tr>
</table>
.box270 {
width: 270px;
}