Hande Aksac schrieb:
I am experiencing some layout issues. I am using the
right navigation
panel. In the Blog WebHome Page, the right navigation panel is properly
visible for some pages.
However, for some pages, the right navigation panel either appears at
the bottom or at the upper left corner of the page. I am having this
problem only on the Blog WebHome page.
It is a potential problem cutting off text after 400 chars:
<div class="article_content
entry-summary">
#set($content = $bentrydoc.display("extract", "view", $bentryobj))
#if($content=="")
#set($content = $bentrydoc.display("content", "view", $bentryobj))
#if($content.length()>400)
#set($i = $content.lastIndexOf(" ", $maxchars))
#set($i = $i + 1)
#set($content="${content.substring(0,$i)} [...>${bentrydoc.fullName}]")
In the first 400 chars there could be some tags left opened - while the
closing tags appear in the rest of the text cut off.
Does the problem persist if you add unformatted (!) content in the
"Extract" field of each blog entry?
Guido