Hi,
Q1: You can control the order of article via ‘Article Order’ settings in backend settings of the menu item of page you want. Check screenshot.
Q2: To limit the intro text, you will need to customize a little bit
Go to file: [root]/templates/ja_wall/html/com_content/category/blog_item.php
Look for this snippet of code which renders the intro text:
<div class="content item-content">
<?php echo $introtext; ?>
</div>
change it to:
<div class="content item-content">
<?php echo JHtml::_('string.truncate', strip_tags($introtext), 150); ?>
</div>
150: is the number of words, you can change as you wish.
Q3: As I can see that you’ve already customized the width of the popup window, you should not display associated the width of the image as if that image is too small, it’s hard to show/display the text.
Regards
-
This reply was modified 6 years, 11 months ago by Saguaros. Reason: Add file path