Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • worlok Friend
    #190885

    In the middle of the page there is a module named “WHAT’S TRENDING NOW” which displays the articles in the selected categories. If this module to change the title, headings of articles to become huge and impossible to return it. What to do?
    before

    after

    The same situation is in the right module Soccer Headlines”.


    1. 1
    2. 2
    phong nam Friend
    #506929

    Hi worlok,

    The root of this issue that Joomla 3.1.5 no longer supports the heading level parameter in the Articles Category module, that is why all article titles of this module are loading the <h1> style as you defined in the overridden layout.

    You can try opening file: /templates/ja_fubix/html/mod_articles_category/features.php

    At line 13:

    $categories = JCategories::getInstance('Content', array('countItems' => 0 ));
    ?>

    change to this:

    $categories = JCategories::getInstance('Content', array('countItems' => 0 ));
    if(!isset($item_heading)){
    $item_heading = 4;
    }
    ?>

    Backing up files before applying changes.

    worlok Friend
    #507575

    It’s working! Thank you.

    triley0131 Friend
    #516608

    Similar issue, made the same change with no results. Any ideas, see attached.


    1. Position-7
    2. Position-5
    phong nam Friend
    #516621

    Hi triley0131,

    The reason is that two modules do not use the features layout in Alternative layout option of Articles Category module.

    Anyways, you can simply backup and open accordion.php and player.php file templatesja_fubixhtmlmod_articles_category path, then put the following codes beneath defined(‘_JEXEC’) or die; :

    if(!$item_heading){
    $item_heading = 5;
    }

    The article titles on modules should display fine then.

    raroit Friend
    #519594

    Hi support,
    i tried the above suggestions but this hasn’t worked
    the link shows articles in category
    plz see attachment


    1. fubix-large-fonts
    phong nam Friend
    #519601

    Hi raroit,

    You can try to create a custom.css file at templates/ja_fubix/css/ path and put below override css styles into:

    .article-header .article-title {
    font-size: 19px !important;
    }

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

This topic contains 7 replies, has 4 voices, and was last updated by  phong nam 10 years, 3 months ago.

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