How does one remove the "Menu" text from the responsive menu in the Genesis Sample Theme?
The following block of code starts at line 35 in the Genesis Sample Theme's functions.php file. Look at the highlighted lines. Replace the word 'Menu' with ''. That's all folks!
It works now. After adding the color, I have to clear my chrome history & WP cache.
Thank you
Great tips!
Finally able to remove the ‘menu’, but any idea how I can change the responsive mobile menu color?
Look for the following CSS clas and add color to to it: .menu-toggle::before, .menu-toggle.activated::before
.menu-toggle::before {
margin-right: 10px;
text-rendering: auto;
background-color: #0b7142;
color: #0b7142;
}
.sub-menu-toggle.activated:before {
-webkit-transform: rotate( 180deg );
-ms-transform: rotate( 180deg );
transform: rotate( 180deg );
background-color: #0b7142;
color: #0b7142;
}
Can’t get it to work. Maybe its because i’m using design palette pro. My theme is magazine pro.
Anyway for the your reply.