after looking at the tpl for quad_layout_tpl i found these errors
in the Integra 2 layout the spacing is wrong and causeing the blockes to not strech to the forum
all the lines that have this
- Code: Select all
<table width="100%" cellpadding="3" cellspacing="1" border="0"
should look like this (so the 3 is a 5)
- Code: Select all
<table width="100%" cellpadding="5" cellspacing="1" border="0"
also in some of the styles the title of the block could not show and i found that all the lines that have this
- Code: Select all
<th>{toprow_blocks_row.TITLE}</th>
should be changed to this
- Code: Select all
<th>{toprow_blocks_row.title.TITLE}</th>
and the title will show up in the title bar.
here is the tpl all together
- Code: Select all
<table><tr> <td><BEGIN><table width="100%" cellpadding="5" cellspacing="1" border="0"<BEGIN>class="forumline"<END>> <BEGIN> <tr> <th>{toprow_blocks_row.title.TITLE}</th> </tr> <END> <tr> <td <BEGIN> class="row1" <END> >{toprow_blocks_row.OUTPUT}</td> </tr></table><br><END></td></tr><tr> <td><table><tr> <td> <BEGIN><table width="100%" cellpadding="5" cellspacing="1" border="0"<BEGIN>class="forumline"<END>> <BEGIN> <tr> <th>{column1_blocks_row.title.TITLE}</th> </tr> <END> <tr> <td <BEGIN> class="row1" <END> >{column1_blocks_row.OUTPUT}</td> </tr></table><br><END> </td><td> </td><td> <BEGIN><table width="100%" cellpadding="5" cellspacing="1" border="0"<BEGIN>class="forumline"<END>> <BEGIN> <tr> <th>{column2_blocks_row.title.TITLE}</th> </tr> <END> <tr> <td <BEGIN> class="row1" <END> >{column2_blocks_row.OUTPUT}</td> </tr></table><br><END></td></tr> <tr> <td><BEGIN><table width="100%" cellpadding="5" cellspacing="1" border="0"<BEGIN>class="forumline"<END>> <BEGIN> <tr> <th>{bottomrow_blocks_row.title.TITLE}</th> </tr> <END> <tr> <td <BEGIN> class="row1" <END> >{bottomrow_blocks_row.OUTPUT}</td> </tr></table><br><END></td></tr> </table> </td></tr></table>