-
Avadhut
Hi,
I want my menus to open after clicking this Menu icon (mobile view), but, it’s not happening. How to do that? Maybe I missed some linking?
Image: https://ibb.co/s9S6HwLd
URL: https://financewalk.com/Thank you.
-
Hi there,
The menu is showing by default; you don’t need to click the hamburger icon.
So do you only need the hamburger icon on mobile and open the navigation by clicking the hamburger icon?
-
Avadhut
So do you only need the hamburger icon on mobile and open the navigation by clicking the hamburger icon?
– Yes
-
Try enable the mobile header at customizer > layout > header.
-
Avadhut
Done this – enable the mobile header at customizer > layout > header.
Still not working.
-
You have this CSS:
.main-nav > ul { display: flex!important; flex-wrap: nowrap!important; justify-content: center!important; padding-left: 0!important; margin-block: 0!important; list-style: none!important; text-align: center!important; white-space: nowrap!important; }change it to:
@media(min-width: 769px) { .main-nav > ul { display: flex!important; flex-wrap: nowrap!important; justify-content: center!important; padding-left: 0!important; margin-block: 0!important; list-style: none!important; text-align: center!important; white-space: nowrap!important; } } -
Avadhut
Where is this CSS? I couldn’t see in “Additional CSS”.
-
In your child theme.
-
Avadhut
Cool. This worked. Now, how to place it right side of the screen and edit it?
Thank you. 😊
-
Alvind
Hi there,
Now, how to place it right side of the screen and edit it?
Are you referring to the hamburger menu icon itself or the individual menu items?
-
Avadhut
Are you referring to the hamburger menu icon itself or the individual menu items?
– Hamburger Menu Icon itself
-
Alvind
Got it. In your child theme stylesheet, locate this CSS:
.inside-navigation.grid-container { justify-content: center; }Then replace
justify-content: center;withjustify-content: flex-end;so it becomes:.inside-navigation.grid-container { justify-content: flex-end; } -
Alvind
Got it. In your child theme stylesheet, locate this CSS:
.inside-navigation.grid-container { justify-content: center; }Then replace
justify-content: center;withjustify-content: flex-end;so it becomes:.inside-navigation.grid-container { justify-content: flex-end; } -
Avadhut
It worked. Thank you.
How to edit colors and Font Size etc of this Hamburger Menu items?
-
The hamburger icon shares the same color as the primary navigation menu item color.
If you only want to change it for the hamburger icon and don’t want to affect the menu items, try this CSS:
span.gp-icon.icon-menu-bars { color: red; font-size: 20px; } -
Avadhut
Thank you. And what about the Font Size?
- You must be logged in to reply to this topic.