Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • ksomers Friend
    #155701

    Whenever I add a “readmore” link to an article, my “left” and “right” template columns get pushed to below the main content area. It doesn’t seem like the main content area changed width or anything, just that the other columns got moved around.

    Obviously not a good scenario. Any way to prevent this from happening?

    The site is find-love-train.com, but it doesn’t have any readmore links at the moment…

    Saguaros Moderator
    #360537

    The problem is from how you making html source code of the article

    for example:

    Supupose that: the source is similar as :

    <div>
    INTROTEXT
    <hr id=”system-readmore”/>
    FULL TEXT
    <div>

    When this article display in the list, -> its html source is :

    <div>
    INTROTEXT

    => the readmore tag cause missing the close tag of the div tag. so that the layout was broken.

    so that you should make the html source like as following:

    <p>
    INTROTEXT
    </p>

    <hr id=”system-readmore”/>
    <div>
    FULL TEXT
    <div>

    dmy09 Friend
    #404040

    Hello, I’m having the same problem with my site, but but when I change to other default template it does not happen, I wonder if it has something to do with the Joomlart Templates?

    Regards

    Sherlock Friend
    #404619

    Hi dmy09,

    Can you let me know which Ja template you see the problem as well as the page layout where the problem occurred (the category,article…layout).
    It is better if you can provide here your url where the issue can be seen.

    dmy09 Friend
    #404669

    Hello heres a link:

    http://goo.gl/LkQhD

    The template is JA_Teline_III

    I attach an article with the problem, and the layout, I know that I can solve this by putting the readmore out of the div but what I wonder if why this only happens with the joomlart templates and with the default templates this does not happen. I know of the quality of your templates so thats whats a bit strange for me.

    Best regards


    Sherlock Friend
    #404719

    Hi dmy09,

    You can try as following
    open the file of templatesja_teline_iiihtmlcom_contentcategoryblog_item.php Look for this snap code

    <div class=”article-content”>
    <?php if (isset ($this->item->toc)) : ?>
    <?php echo $this->item->toc; ?>
    <?php endif; ?>
    <?php echo $this->item->text; ?>
    </div>

    change to

    <div class=”article-content”>
    <table cellpadding=”0″ cellspacing=”0″ width=”100%”>
    <tr><td>
    <?php if (isset ($this->item->toc)) : ?>
    <?php echo $this->item->toc; ?>
    <?php endif; ?>
    <?php echo $this->item->text; ?>
    </td></tr>
    </table>
    </div>

    Hope that make sense, If not please provide me your admin account, the FTP info into the ticket of XUD-129-25951 for further checking.

Viewing 6 posts - 1 through 6 (of 6 total)

This topic contains 6 replies, has 4 voices, and was last updated by  Sherlock 13 years, 1 month ago.

We moved to new unified forum. Please post all new support queries in our New Forum