Okay
  Public Ticket #2503622
top menu titles
Closed

Comments

  •  16
    wheelsacrossmorocco started the conversation

    Hi, via the hamburger link, the widget titles are no longer showing, above creative plan and Creative approach.

  • [deleted] replied

    Hi,

    Please add the code below to your Custom CSS area:

    .top-menu-container .widget .widgettitle {
        color: #89898B;
    }

    Have a nice day!

  • [deleted] replied

    Hi wheelsacrossmorocco,

    Actually top menu bar is not supported in mobile devices, in the future we can consider implementing it but for now its not implemented in our theme.

    However, I have created a snippet for you and added in Theme Options > Other Settings > Custom JavaScript > Footer JavaScript:

    <script>
    jQuery( document ).ready( function( $ ) {
        $( '.toggle-bars' ).unbind().on( 'click', function( ev ) {
            ev.preventDefault();
            topMenuToggle( $( this ) );
        } );
        $( '<style>@media screen and (max-width: 768px){ .top-menu-container { display: block !important; } }</style>' ).appendTo( 'body' );    
    } );
    </script>
    So now the top menu also opens on mobile:

    https://d.pr/v/ozJ9ZL

  •  16
    wheelsacrossmorocco replied

    Thanks, done.

  •  16
    wheelsacrossmorocco replied

    'However, I have created a snippet for you and added in Theme Options > Other Settings > Custom JavaScript > Footer JavaScript:'

    Ok, yes I see, but the regular menu has been replaced. 

  •  16
    wheelsacrossmorocco replied

    Viewers can scroll down for content and I could add a menu in the footer which would be disabled for desktop use?

  •  16
    wheelsacrossmorocco replied

    Can you think of a solution for this so a menu appears somewhere on a mobile device? Thanks

  • [deleted] replied

    Hi wheelsacrossmorocco,

    I am not sure what exactly do you mean, can you please explain how do you want that to be disabled?

  •  16
    wheelsacrossmorocco replied

    Hi,

    For mobile devices, there ideally should be a navigation site menu. The hamburger is no longer for this but is there anywhere else to put a navigation menu?

    If not then we should disable the pull down option from the hamburger.

    [EDIT]

    Ok, so what's the best way forward for this. If I want to return to the usual menu I can just remove the snippet in the footer and save it? 

    [EDIT]

    Is there any way to include the navigation menu in the drop down menu using a widget?

    [EDIT]

    There should be a way of including a navigation menu in the drop down for mobile devices only. Is it possible?

  • [deleted] replied

    Hi wheelsacrossmorocco,

    Sorry but we have impossible to use the top-menu for the mobile devices, it is mean to work for PC menu only and not mobile menu.

    Thanks for your understanding.

  •  16
    wheelsacrossmorocco replied

    Ok, fine, so to go back to the normal hamburger site menu, I should just remove the snippet in footer javascript?

  • [deleted] replied

    Yes, you need to remove the JavaScript code that Arlind gave you in this ticket.

    Thanks!

  •  16
    wheelsacrossmorocco replied

    great, thanks