Menu problems

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 Jan 08, 2014 8:06 am
Reply with quote
Report this post
#1 how to make the menu non-sticky.


#2 how to have classic menu on mobile and tablet view.

#3 how to stop certain modules to appear on mobile or/and tablet view ?


Thanks
User avatar
Gold Boarder

GK User
Wed Jan 08, 2014 10:10 am
Reply with quote
Report this post
Could You please post an url to your site?
User avatar
Moderator

GK User
Wed Jan 08, 2014 11:30 am
Reply with quote
Report this post
Regatulunit.com
User avatar
Gold Boarder

GK User
Wed Jan 08, 2014 6:40 pm
Reply with quote
Report this post
Please edit: /templates/gk_rockwall/css/override.css and add at its end:

Code: Select all
#gkMenuWrapper {position: absolute;}

to make menu not sticky,
Code: Select all
@media all and (max-width: 1030px) {
  #gkMobileMenu {   
    display: none !important;
  }
  #gkMainMenu, #gkExtraMenu {   
    display: block !important;
  }
}

to make desktop menu visible (but it will not look good, as it is designed to be responsive),
Remember to enable "CSS override" in template settings - advanced section.


Now to show/hide some modules, please follow this documentation:
http://www.gavick.com/documentation/gen ... et-layout/
User avatar
Moderator

GK User
Wed Jan 08, 2014 10:43 pm
Reply with quote
Report this post
Code: Select all
@media all and (max-width: 1030px) {
  #gkMobileMenu {   
    display: none !important;
  }
  #gkMainMenu, #gkExtraMenu {   
    display: block !important;
  }
}


doesnt work ...

msocial template ... you can choose between classic or overlay menu ...which includes mobile view ...

this is what i need with rock template .... classic menu ...

thanks
User avatar
Gold Boarder

GK User
Fri Jan 10, 2014 4:26 pm
Reply with quote
Report this post
Sadly, we don't support moving functionalities from one template to another if it can't be done in few easy steps.
If menu that is available on desktop will work fine for you on mobile.tablet, please post an url to your site and I'll check why that declaration doesn't work.
User avatar
Moderator

GK User
Fri Jan 10, 2014 7:04 pm
Reply with quote
Report this post
yoluca wrote:Regatulunit.com
User avatar
Gold Boarder

GK User
Sat Jan 11, 2014 11:21 pm
Reply with quote
Report this post
any chance to have this menu classic even on mobile view ? ...

thanks
User avatar
Gold Boarder

GK User
Sun Jan 12, 2014 11:47 am
Reply with quote
Report this post
Using classic menu on mobile.tablet is not the best idea - as template is responsive, with the reduction of browser width the menu will just not fit in browser width and some of the menu elements will drop to the second line. Mobile menu that is implemented into template is a standard solution that is used in mobile templates and users are used to it.
User avatar
Moderator


cron