Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • brusamolino Friend
    #1013352

    HI
    inside "Lavori" i have used a JoomlArt Advanced Custom Module (Features Intro : style-1) to have on the right four categories with image, title and description. When i click on title i see all projects about this category

    Can you tell me how can i set the image of each category linkable like the title?

    Is possible, when i go inside a category, to have the top menù fixed when i scroll the projects?

    Please can you help me?
    Best regards Luca


    1. project
    2. project2
    Pankaj Sharma Moderator
    #1013529

    Hi
    To make the image clickable
    Open template folder /acm/feature-intro/tmpl/style-1.php file

    Find

                        <img src="<?php echo $helper->get('data.img-features', $i) ; ?>" alt="<?php echo $helper->get('data.title', $i) ?>" />
    

    replace it with

    
                        <a href="<?php echo $helper->get('data.link', $i); ?>">
    
                    <img src="<?php echo $helper->get('data.img-features', $i) ; ?>" alt="<?php echo $helper->get('data.title', $i) ?>" />
                    </a>
    

    Foe category menu try this code in custom.css

    @media (min-width:768px) {
    .categories-list.horizontal {
        position: fixed;
        width: 100%;
        z-index: 99;
        padding-right: 394px;
    }}

    Save and check.

    brusamolino Friend
    #1013540

    HI
    thanks for your reply
    For the image is ok

    I have a problem to fix the menù
    With this code in custom.css the top menù is fixed but when i open the left menù the top bar go down… see the attach

    Can you help me?
    Best regards ù
    Luca


    1. menutop01
    2. menutop02
    Pankaj Sharma Moderator
    #1013713

    Hi Actually the category menu are inside the main content so it use the same style of mainbody. You can replace the code with this

    @media (min-width: 1119px)
    {
    .categories-list.horizontal {
        position: fixed!important;
        width: 100%;
        z-index: 99;
        padding-right: 394px;
        margin-top: 0px!important;
    }
    
    .t3-content {
        padding-top: 0px;
    }
    }

    But it will have padding above it, its mainbody padding if you will remove it it will also effect the content.

    Regards

    brusamolino Friend
    #1013856

    Hi
    Is not possible put the category menu outside maincontent?

    Best regards
    Lucq

    Pankaj Sharma Moderator
    #1013858

    No
    its part of content not a new module.

    Regards

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

This topic contains 5 replies, has 2 voices, and was last updated by  Pankaj Sharma 7 years, 1 month ago.

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