-
AuthorPosts
-
October 25, 2010 at 7:30 pm #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 ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
October 26, 2010 at 2:10 am #360537The 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 Frienddmy09
- Join date:
- May 2009
- Posts:
- 21
- Downloads:
- 1
- Uploads:
- 4
- Thanks:
- 8
- Thanked:
- 1 times in 1 posts
August 1, 2011 at 4:21 pm #404040Hello, 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 FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
August 5, 2011 at 8:36 am #404619Hi 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 Frienddmy09
- Join date:
- May 2009
- Posts:
- 21
- Downloads:
- 1
- Uploads:
- 4
- Thanks:
- 8
- Thanked:
- 1 times in 1 posts
August 5, 2011 at 1:53 pm #404669Hello heres a link:
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 FriendSherlock
- Join date:
- September 2014
- Posts:
- 11453
- Downloads:
- 0
- Uploads:
- 88
- Thanks:
- 221
- Thanked:
- 2478 times in 2162 posts
August 6, 2011 at 4:44 am #404719Hi 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.
-
AuthorPosts
This topic contains 6 replies, has 4 voices, and was last updated by Sherlock 13 years, 3 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum