Home › Forums › WordPress Themes – Premium › Flat Responsive › Add the word Menu next to or above toggle bar › Reply To: Add the word Menu next to or above toggle bar
August 25, 2015 at 8:35 am
#21726
Inactive
Hi Reginald,
Please follow the instruction below to fix the issue:
Goto Theme Directory =>Your_theme_name(default:flat-responsive-pro)=>flat-responsive => templates=>template_functions.php line no. 186.
Now, Here is the code of line there :
Add the Text inside the , that you want, like below:
MENU
Now, add the following code of css in your child theme stylesheet (OR use custom css plugin to write this css.)
@media screen and (max-width: 1030px){
a.toggle_button_flat_responsive_menu {
font-size: 20px;
}
a.toggle_button_flat_responsive_menu:before {
font-size:1em;
float: right;
padding-left: 10px;
}
}
Thanks