Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • nneghi Friend
    #976983

    The Galleries are not displaying apropriately. The top menu submenu is not hidden on mobile . I want the submenu hidden on mobile, only to display when touched.

    Pankaj Sharma Moderator
    #977028

    Hi
    For the gallery issue could u provide me a screenshot and illustrate the issue inside the screenshot this will help me to understand the exact issue .
    At present gallery is working on your site : http://prntscr.com/cva6bt
    In the mobile on your site , it seems modified by you , it looks different compare to the demo site : http://prntscr.com/cva8tg
    http://prntscr.com/cva9g1
    can u provide the changes details ?

    nneghi Friend
    #977055
    This reply has been marked as private.
    nneghi Friend
    #977061

    I created other menus under top menu and these menus has submenus and I’ve tried to keep the submenus to appear as drop down menu on mobile but unfortunately the long list of submenus is showing on mobile and that is not good. So please help me to correct this. The submenu appears as drop down menu on desktop but not on mobile.


    1. your-video
    Pankaj Sharma Moderator
    #977101

    Hi
    For the Event background you have to apply the same settings that is showing in the documentation Here
    As given in the documentation i changed the template style of Event menu to JA Teline V-Event
    And now you can see your event page is like in demo : http://prntscr.com/cvbf7q

    Gallary : same setting from the documentation i applied on Gallary menu and its working as in demo now :http://prntscr.com/cvbg1r

    Menu : The submenu option was set to NO http://prntscr.com/cvbhv1
    I Enabled it again , now you can see the submenu . I will check the submenu dropdown possibility and let u know . Its default Joomla menu module and show the submenu always as set in menu module .

    nneghi Friend
    #977160

    Thanks very much for your assistance. I look forward to see you fix the drop down menu issue. Thanks

    Pankaj Sharma Moderator
    #977346

    You are welcome! , for the menu , i am unable to got a solution since it default Joomla menu module . I will again check it and if i found the answer definitely i will update you here.

    Pankaj Sharma Moderator
    #977442

    Hi
    I am afraid your request take custom work and out of support scope , If you would like to add this feature , you van contact JA Custom services Here , you have to pay a cost depends on the task .

    The Captain Moderator
    #980546

    Hi @nneghi

    To resolve this issue, I suggest you follow step by step: +/ Open the file : templates/ja_teline_v/css/template.css. Replace the code:

    @media (max-width: 991px) {
      .always-show .mega > .mega-dropdown-menu,
      .always-show .dropdown-menu {
        display: block !important;
        position: static;
      }
      .open .dropdown-menu {
        display: block;
      }
    }

    By the code :

    @media (max-width: 991px) {
      .always-show .mega > .mega-dropdown-menu,
      .always-show .dropdown-menu {
        display: block !important;
        position: static;
      }
      .open .dropdown-menu {
        display: block;
      }
        .closed .dropdown-menu {
            display: none !important;
        }
    }

    +/ Next, Open file : templates/ja_teline_v/js/script.js. Find the code:

    // fix ipad calendar not close when click outsite calendar.
        $('html.com_users').on({ 'touchstart' : function(){ 
            if (!$(event.target).closest(".calendar").length) {
                $('.calendar').hide();
            }
        }});

    And add the code below:

    // Off Canvas Menu.
        $('.off-canvas-left  ul.nav.nav-pills.nav-stacked  li.dropdown.parent').each(function() {
            $(this).addClass('closed');
        });
    
        $('.off-canvas-left  ul.nav.nav-pills.nav-stacked  li.dropdown.parent a.dropdown-toggle').off().unbind().dropdown();
        $('.off-canvas-left  ul.nav.nav-pills.nav-stacked  li.dropdown.parent a.dropdown-toggle').click(function() {
            $('.dropdown-backdrop').remove();
            if ($(this).parent().hasClass('closed')) {
                $(this).parent().removeClass('closed');
            } else {
                window.location.href = $(this).attr('href');
            }
        });

    Always backup before making changes.

    Hope this helps you, and don’t forget to inform me the result.

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

This topic contains 8 replies, has 3 voices, and was last updated by  The Captain 7 years, 6 months ago.

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