• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Quick HTML Question

Hi, I have a page that I've set up as one big table (about 2x33) for ordering questions in a questionnaire. However, I want only the outside of the entire table border to show, and none of the grid lines in the middle to show. How do I do this? I've been looking, but all I've seen was the ability to turn on/off the grid for the whole table - I don't want to merge cells because I want to retain the table structure. Thanks!
 
easiest way is to put another table around it (with a border)

<table cellpadding=0 cellspacing=0 border=1><tr><td>
<!-- your table here -->
</td></tr></table>
 
Back
Top