Great theme by the way. My only problem with the UI so far is Additional navigation bar on smaller screens. For example, on my phone the main navigation is all grouped into the navigation icon. The Additional navigation stays at the top of the screen. The problem with this is that anyone visiting the site thinks that the Additional Navigation is the main navigation and don’t see the collapsed main navigation.
Is there a way to place the Additional Navigation into the navigation icon with the rest of the menu items on smaller screens?
Thanks in advance
Hi gscorer,
No, not easily. The theme actually re-creates the initial menu into a secondary very basic menu but combining two different menus would be a good step more complicated.
Regards,
Devin
Is there a way to remove the additional navigation only on small screens?
Hi gscorer,
Try adding this code to the Quick CSS area in the Theme options page:
@media only screen and (min-width: 768px) { .responsive #header .sub_menu{ display: block } }
@media only screen and (max-width: 767px) { .responsive #header .sub_menu{ display: none } }
Regards,
Josue