Skip to content
Sridhar Katakam edited this page Aug 26, 2021 · 4 revisions

Welcome to the oxygen-responsive-menu wiki!

Below are some FAQ:

How to remove the word "Menu"?

In the plugin's php file, change

'mainMenu' => sprintf( '<span class="hamburger-box"><span class="hamburger-inner"></span></span><span class="hamburger-label">%s</span>', __( 'Menu', 'genesis-sample' ) ),

to

'mainMenu' => sprintf( '<span class="hamburger-box"><span class="hamburger-inner"></span></span><span class="hamburger-label"></span>' ),

How to increase the hamburger menu size?

In the plugin's css file, add

.hamburger {
  transform: scale(1.5);
}

How to toggle sub menus by clicking the entire menu item instead of just the arrow on the right?

https://www.youtube.com/watch?v=9j8dhuRUduM

Add this CSS:

.sub-menu-toggle {
	width: 100%;
	text-align: right;
}

How to change the breakpoint at which the menu collapses to a hamburger?

Edit the plugin's assets/css/main.css file and change the min-width value around L325.

@media only screen and (min-width: 960px) {