Hello,

that's my problem

I installed Infinity from the scratch using quickstart

I installed it with multilanguage option, but, since the installation created 2 different menus (EN+IT), in my home page (both it and en) I lost the modules I should have had in single language installation.

So I opened every single home page modules and I assigned them the italian language and the italian menu; this way I recreated the original demo template home page design.

The problem is with the header GK4 image module: it does not appear correctly the same way it appears in the template demo (it's shorter than the demo one) and it does not rotate either. Why is that? I did not (yet) change any image of the quickstart template.

I have Joomla 3.10.3 and Image Show GK4 ver. 1.7.4 GK4.

I read the post https://www.joomlart.com/forums/d/37143-issue-with-image-show but I don't understand how to fix the problem.

Speaking of multilanguage: why the lang position (for the langswitch) in in the very bottom of the page? It's an uncommon position...

Thanks in advance for your help

    Hi rossella1

    You will need to enable autoanimation so it can automatically slide:

    For the height of module, it due to custom style on your site:

    @media screen and (max-width: 2130px){
    #gkHeaderMod {
        height: 464px;
    }
    }

    You can change the height value to 960px, it will look the same like demo site.

    About the language position, you can add this code to the part you wish in this file: /templates/gk_infinity/layouts/default.php

        <?php if($this->API->modules('lang')) : ?>
        <section id="gkLang">
        	<div class="gkPage">
             	<jdoc:include type="modules" name="lang" style="<?php echo $this->module_styles['lang']; ?>" />
             </div>
        </section>
        <?php endif; ?>

    and assign the language switcher module to 'lang' position.

    Thank you so much! Actually the autoanimation was already enebled, but since the module height was not correctly set the entire module did not rotate neither was correctly visible.

    Thanks for the help :-)

    Write a Reply...
    You need to Login to view replies.