Default Menu on Tablets

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 May 30, 2013 1:18 am
Reply with quote
Report this post
Hi there,

I don't get it and need some help.
I need the mainmenu to be normally shown on a tablet - not as the mobile "three-stripes" menu icon.

I can change the "Tablet width" in the Template Layout setting to whatever I want - nothing changes. The mobile mainmenu appears with 2000px width or 500px width...

Do I miss something?
User avatar
Junior Boarder

GK User
Thu May 30, 2013 8:32 am
Reply with quote
Report this post
Following is css code which hides main menu and displays mobile menu in tablet.css file.

Remove following css codes in tablet css.
Code: Select all
#gkMobileMenu {
    background: url("../images/tablet_menu.png") no-repeat scroll 0 0 transparent;
    float: right;
    margin: -6px 5px 0;
    position: relative;
}
#gkExtraMenu {
    display: none !important;
}
#gkMainMenu {
    display: none;
}
#gkMobileMenu select {
    height: 44px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 44px;
}
#gkMobileMenu {
    clear: both;
    display: block !important;
    float: right;
    font-size: 18px;
    height: 44px;
    line-height: 44px;
    position: relative;
    text-indent: -9999px;
    width: 44px;
}


And Hide the mobile menu with below css code in tablet.css

Code: Select all
#gkMobileMenu { display:none;}


See you around...
User avatar
Platinum Boarder

GK User
Thu May 30, 2013 5:09 pm
Reply with quote
Report this post
That's it! Many thanks!!!
User avatar
Junior Boarder

GK User
Thu May 30, 2013 6:34 pm
Reply with quote
Report this post
No problem at all, see you around...
User avatar
Platinum Boarder


cron