You should notice that some of the themes presented on my themes site don't style the 'continue reading' byline so it still appears directly after the content but also within the content, often breaking the designers hard work.
My belief is that the entries.tpl needs to be amended and the continue reading code needs a <p> placed around it. I also tend to add an additional class to my byline so that I don't have to worry that my paragraphs elsewhere will be affected. Lets assume you add the <p>, your entries.tpl code could look like this,
<p class="continue_reading"><a href="{$entry.link}#extended">
{$CONST.VIEW_EXTENDED_ENTRY|@sprintf:$entry.title}</a></p>
Now simply create the following style in your stylesheet,
.continue_reading {
clear:left; }
This has the advantage of also allowing further styling, so you could for example change the color or add an image.



CoSTa said,
Sunday, February 12. 2006 at 16:57 (Reply)
Ripper^^ said,
Friday, February 17. 2006 at 19:33 (Reply)
Perhaps you could help me with this "continue reading" thing. How do you do it? I would like to implement something like this in some of the entries on my site, but I'm not entirely sure how to do it. If you could point me in the right direction I would appreciate it.
Ripper^^
CoSTa said,
Saturday, February 18. 2006 at 10:57 (Reply)
carl gives here only a simple solution how to style this link (again - thanks carl).
Ripper^^ said,
Monday, February 20. 2006 at 23:16 (Reply)
Ripper^^