Forum Moderators: open
<table cellpadding="0" cellspacing="0" border="0">
<tr><td><img src="images/h_faqs.gif" width="150" height="26" alt="My Cart"></td></tr>
<tr>
<td bgcolor="#E3EDF5" class="mycart">
<%=getFAQsList(cfg_FAQsPerPage)%>
</td>
</tr>
<tr>
<td><a href="Help.asp"><img src="images/f_faqs.gif" width="150" height="26" border="0" alt="More Questions"></a></td>
</tr>
</table>
the table in opera expands past the alotted space. help
No need for a table at all!
<div style="width: 150px;"> <!-- a "wrapper" div -->
<img src="images/h_faqs.gif" width="150" height="26" alt="My Cart">
<div style="background: #E3EDF5;" class="mycart">
<%=getFAQsList(cfg_FAQsPerPage)%>
</div>
<a href="Help.asp"><img src="images/f_faqs.gif" width="150" height="26" border="0" alt="More Questions"></a>
</div> <!-- close wrapper -->
If you still are getting the expansion problem, something in the ASP variable must be causing it.
Regards,
Birdman