test
Viewing 15 posts - 1 through 15 (of 17 total)
  • Author
    Posts
  • Pankaj Sharma Moderator
    #904603

    Hi

    1. To change the font family and size add below code in custom.css file Change the font value with your value .
    .category-module .category-info .category-title { font-size: 36px; font-weight: 700; font-family: 'Open Sans',sans-serif !important; }
    
    1. Open /language/en-GB/en-GB.tpl_ja_decor.ini Find and change the text

      TPL_FILTER_PROJECT          = "Filter Project"
      TPL_ALL_PROJECT             ="All Project"
      TPL_INFINITY_NEXT           ="Next project"
      TPL_JSLANG_FINISHEDMSG      ="That's all"

    Hope it helps .

    trkien1203 Friend
    #905083

    Hi Pankaj,

    Thank you for your help. Everything is OK except for two things:

    • Title are not in uniform and is seperated into two lines with the first line in normal and second line in Bold. How to change them into one line in Bold?

    • How to modify "View all" in vietnamese?

    Thank you.


    1. Screenshot-2016-03-27-10.13.44
    trkien1203 Friend
    #905085

    Hi Pankaj,

    And tell me how me to change this into Vietname?

    Thank you.


    1. Screenshot-2016-03-27-10.23.59
    Pankaj Sharma Moderator
    #905235

    Hi
    For view and view all
    Open /language/en-GB/en-GB.tpl_ja_decor.ini Find and change the text

    VIEW_ALL            = "View all"
    
    TPL_VIEW = "View"

    Regarding the title i found its already bold .

    trkien1203 Friend
    #905236

    Hi,

    Currently, I am using Custom HTML so you will see in the website the title bolt with two words in one line.

    As in my previous picture, when I use article module, it will be place in two lines with the first word in the upper line – not bold (or other font because I found it different style with the 2nd word) and the second word in the lower line – bold.

    Please guide me how to modify it to become same in Custom HTML: the title bolt with two words in one line.

    Thank you.


    1. title
    Pankaj Sharma Moderator
    #905247

    Hi
    Regarding the view button kindly check my last reply .For the title issue i need to check it directly on your site , kindly publish the module so i can take a look on it .
    Also in custom html module u can write your own style with classes , In a module you can do same , I suggest you to use firebug /inspect element tool from browser to check the class and modify them as per your needs .

    trkien1203 Friend
    #905262

    Hi,

    I publish the module. You can go to my website to see it: http://www.vshome.com.vn

    Thanks.

    Pankaj Sharma Moderator
    #905264

    Hi
    Add this code in custom.css file

    .category-module .category-info .category-title .first-letter {
        font-weight: 700!important;
        font-family: 'Open Sans',sans-serif !important;
        font-size: 36px;
    }
    trkien1203 Friend
    #905274

    Hi,

    Thank you for your help, but the title is still divided into 2 lines. You can see in my website.

    How can make them in one line?

    Thanks.

    Pankaj Sharma Moderator
    #905284

    Hi
    Actually, the module is designed in this way to show the category title in two lines . You can remove this by below solution
    Go to /templates/ja_decor/html/mod_articles_category/normal.php and triangle.php
    Find

    <?php 
                    $cat_title = $jacategory->title;
                    $cat_titles = explode(" ",$cat_title);
                    echo '<span class="first-letter">'.$cat_titles[0].'</span>';
                    unset($cat_titles[0]);
                    echo ' '.implode(" ",$cat_titles);
                ?>

    and replace it with

        <?php echo $jacategory->description;?>

    After this change you can see the title normally . Also you can remove my last suggesion from custom.css to make 2nd work bold that does not effect after this change .

    trkien1203 Friend
    #905289

    Hi,

    Thank you so much. I can make it normally as expected.

    But, come back to previous problem with View and View All, I did as you suggested, nothing happens.

    I attach ja_decor.ini file for your reference. What should I do now?
    https://onedrive.live.com/redir?resid=347D49F419999D5C!1935&authkey=!ANyaW4lcOZP2y14&ithint=file%2cini

    Note: currently, I set default language for the website is Vietnamese. If you need admin account please send me your email, I will send admin account to your email address.

    Kien.

    Pankaj Sharma Moderator
    #905292

    Hi
    Kindly submit your site super user details and FTP details via Set as Private reply here
    http://static.joomlart.com/images/blog/2015/nov/Add-new-post.gif
    I will check the View button issue .

    trkien1203 Friend
    #905299

    Hi,

    I send all information you need here:
    https://www.joomlart.com/forums/topic/help-to-customize-articles-category-module-cont/

    Please help me.

    Thanks.

    trkien1203 Friend
    #908283

    Hi,

    Please guide me how to justify intro text in the "mod-articles-category-introtext".

    Thank you.
    Kien.


    1. intro-text
    Pankaj Sharma Moderator
    #908523

    Hi
    Add this code in custom.css file for justify text

    .mod-articles-category-introtext {text-align:justify;}
Viewing 15 posts - 1 through 15 (of 17 total)

This topic contains 17 replies, has 2 voices, and was last updated by  Pankaj Sharma 8 years, 8 months ago.

The topic ‘Help to customize Articles – Category module’ is closed to new replies.