- This topic has 2 replies, 2 voices, and was last updated 7 years, 6 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Change Primary Menu icon’ is closed to new replies.
Tagged: icons, Primary Menu
Is there a way to change the primary menu icon that shows up when you switch views to tablet or mobile?We are developing a site for just mobile users. We are not using the Primary menu as a menu, it is going to be more of an emergency contact page and we would like to change the icon (3 lines) to an icon that is more appropriate.
Thank you.
Can you try adding this into Appearance > Customize > Additional CSS
.toggle-nav span {
background: transparent;
}
.toggle-nav span:before {
font-family: 'FontAwesome';
content: "\f030";
font-size: 30px;
color: #fff;
height: 30px;
background: transparent;
}
.toggle-nav span:after {
display: none;
}
In the example above I included a camera icon.
You can change this to a more suitable icon by changing this line:
content: "\f030";
List of available fonts here: https://fontawesome.com/v4.7.0/cheatsheet/
on the fontawesome page the code for camera icon is 
and you would just use the f030 part preceded with a back-slash e.g. content: "\f030";
Andy, you are the bomb! I have spent weeks trying to figure these things out. Thanks for all of your help today.