1
Hi all,
I am having problems with something maybe you guys can help me. This is the problem:
I made a new theme but I want to keep it the same size (so if you have more text in your centerfield then the size the field)
I tryed to use
<IFRAME SRC="<{$xoops_imageurl}>centerfield.html" WIDTH=500 HEIGHT=500 frameborder="0" scrolling="yes">IFRAME>
and made a page (centerfield.html) with this in it:
<body background="images/layout_.gif">
<body background="images/layout_.gif">
<{if $xoops_showcblock == 1}>
<table cellspacing="0">
<tr>
<td width="100%" colspan="2">
<{foreach item=block from=$xoops_ccblocks}> <table cellspacing="1" cellpadding="5">
<tr>
<td class="blockTitle"><{$block.title}>td>
tr>
<tr>
<td class="blockContent"><{$block.content}>td>
tr>
table>
<{/foreach}>
td>
tr>
<tr>
<td width="50%">
<{foreach item=block from=$xoops_clblocks}> <table cellspacing="1" cellpadding="5">
<tr>
<td class="blockTitle"> <{$block.title}>td>
tr>
<tr>
<td class="blockContent"><{$block.content}>td>
tr>
table>
<{/foreach}>
td>
<td width="50%">
<{foreach item=block from=$xoops_crblocks}> <table cellspacing="1" cellpadding="5">
<tr>
<td class="blockTitle"> <{$block.title}>td>
tr>
<tr>
<td class="blockContent"><{$block.content}>td>
tr>
table>
<{/foreach}>
td>
tr>
table>
<{/if}>
div>
<div align="left" id="content"> <{$xoops_contents}> div>
<TD>
body>
and the only thing it shows on the page is
<{if $xoops_showcblock == 1}>
<{foreach item=block from=$xoops_ccblocks}>
<{$block.title}>
<{$block.content}>
<{/foreach}>
<{foreach item=block from=$xoops_clblocks}>
<{$block.title}>
<{$block.content}>
<{/foreach}> <{foreach item=block from=$xoops_crblocks}>
<{$block.title}>
<{$block.content}>
<{/foreach}>
<{/if}>
<{$xoops_contents}>