Disable mobile menu

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Wed Oct 02, 2013 11:33 am
Reply with quote
Report this post
Hi,

we need to disable the disappearing of the desktop menu and the substitution with the mobile version of the menu.

We need to have the dektop version of the menu also for the mobile.

How can we do this? Where is the script that manage the disappearing?

Thanks,
Mario Caruso
CDB//Agency srl
Italy
User avatar
Fresh Boarder

GK User
Wed Oct 02, 2013 11:53 am
Reply with quote
Report this post
It is not a script, it is simply hidden away in appropriate css files.

Following are ids for menus.

Code: Select all
#gkMainMenu
#gkMobileMenu

So in mobile and tablet css #gkMainMenu is hidden in css files.

Following files and lines:
File: tablet.css line-104 and 101


Following is css code which hides main menu.
Code: Select all
#gkMainMenu {
    display: none;
}
#gkExtraMenu {
    display: none !important;
}

Replace it with mobile menu id instead.
Code: Select all
#gkMobileMenu {
    display: none;
}
#gkExtraMenu {
    display: block !important;
}
User avatar
Platinum Boarder

GK User
Wed Oct 02, 2013 2:32 pm
Reply with quote
Report this post
Thank you!

It worked!

Bye,
Mario Caruso
CDB//Agency srl
User avatar
Fresh Boarder

GK User
Thu Oct 03, 2013 3:24 am
Reply with quote
Report this post
No problem at all, see you around...
User avatar
Platinum Boarder


cron