Text Wrap
Posted: Tue Dec 23, 2008 7:08 am
I'm trying create a new page and am having trouble keeping the center column or body form expanding with the text. My right column keeps running off the page.
Here's my code with some sample text.
The body, the part with all the XXXXXXXXXXXXXXX just runs off the page, pushing the right column out of site, adding a horizontal scroll.
Myron
Here's my code with some sample text.
Code: Select all
{serendipity_hookPlugin hook="entries_header"}
<div class="serendipity_Entry_Date">
<h3 class="serendipity_date">{$smarty.now|@formatTime:DATE_FORMAT_ENTRY}</h3>
<h4 class="serendipity_title">Welcome to the CodeTwist Blog.</h4>
<div class="serediptiy_entry">
From time to time people get the urge to expoundXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
</div>
{foreach from=$entries item="dategroup"}
{foreach from=$dategroup.entries item="entry"}
<br><a href="{$entry.link}">{$entry.title}</a>, Post by {$entry.author}, on {$entry.timestamp|@formatTime:DATE_FORMAT_ENTRY}
{foreachelse}
{if not $plugin_clean_page}
{$CONST.NO_ENTRIES_TO_PRINT}
{/if}
{/foreach}
{/foreach}
<div class='serendipity_entryFooter' style="text-align: center">
{if $footer_prev_page}
<a href="{$footer_prev_page}">« {$CONST.PREVIOUS_PAGE}</a>
{/if}
{if $footer_info}
({$footer_info})
{/if}
{if $footer_next_page}
<a href="{$footer_next_page}">» {$CONST.NEXT_PAGE}</a>
{/if}
{serendipity_hookPlugin hook="entries_footer"}
</div>
</div>
Myron