Hello,
Quote:
I am having issues with people identifying the 3 bars on the side as a menu.
3 Bars are widely accepted trend to represent menu in the modern web design or mobile apps.
Quote:
Is there anyway to make it that when you however over the 3 bars that it opens the menu instead of having to click ?
Open File `wedding/js/custom.js`
Replace Code Line No 24
$( ‘.menubar’ ).off( ‘click’ ).on( ‘click’, ‘a’, function( e ) {[/CODE]
with
[CODE]$( ‘.menubar’ ).off( ‘click mouseover’ ).on( ‘click mouseover’, ‘a’, function( e ) {[/CODE]
Thanks[CODE]$( ‘.menubar’ ).off( ‘click’ ).on( ‘click’, ‘a’, function( e ) {[/CODE]
with
$( ‘.menubar’ ).off( ‘click mouseover’ ).on( ‘click mouseover’, ‘a’, function( e ) {[/CODE]
Thanks[CODE]$( ‘.menubar’ ).off( ‘click mouseover’ ).on( ‘click mouseover’, ‘a’, function( e ) {[/CODE]
Thanks