Show complete "template menu" in tablet

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
Thu Apr 18, 2013 11:56 pm
Reply with quote
Report this post
Hello,
Is there a way to keep showing the "template menu" when viewing the site in a tablet, instead of making it mobile (three lines to display menu)?
Or, in case this is not possible, how do I set a "tablet only" menu in the mainmenu position?
Thanks in advance for your help.
User avatar
Fresh Boarder

GK User
Fri Apr 19, 2013 4:53 am
Reply with quote
Report this post
Each device is using their own css file and in this case main menu is hidden when system is using tablet.css file.

Simply delete below lines in "/templates/gk_storebox/css/tablet.css" file.
Lines:98 to 108 which is below
Code: Select all
#gkMobileMenu {
   background: transparent url('../images/tablet_menu.png') no-repeat 0 0;
   float: right;
   margin: -6px 5px 0 5px;
   position: relative;
}
#gkExtraMenu {
   display: none!important;
}
#gkMainMenu {
   display: none;
}

And add following in case Mobile menu shows up.
Code: Select all
#gkMobileMenu {
   display: none;
}


See you around...
User avatar
Platinum Boarder

GK User
Fri Apr 19, 2013 7:59 pm
Reply with quote
Report this post
Thank you so much Norman, it worked like a charm! ... Additional info: I just had to "cut and paste" the same lines I deleted from tablet.css to the mobile.css file in order to keep the mobile menu to show up in mobile phones.
Thank you again!
User avatar
Fresh Boarder

GK User
Fri Apr 19, 2013 8:01 pm
Reply with quote
Report this post
No problem at all, see you around...
User avatar
Platinum Boarder


cron