Hi Liza,
- For the “Home icon” question, are you just wanting an icon or link name with an icon?
- You home link doesn’t need to be called “Home”. When you make your link for the menu, you retype the label field to what you want.
Back to the icon though; there are a couple of options:
- Using a plugin: Something link this one Menu Image, Icons made easy – WordPress plugin | www.remarpro.com
- Custom coding
There are several tutorials online about adding icons (sometimes images) to a menu. This one from WPBeginner provides the options above. How to Add Image Icons With Navigation Menus in WordPress (wpbeginner.com)
It could also be done using CSS code which can be added to the Additional CSS tab in the customizer. For example, I added a house icon to your “An Invitation” menu link using:
li#menu-item-13395::before {
content: '\F424';
font-family: Bootstrap-icons;
margin-right: 3px;
}
This theme already uses Bootstrap icons, so I was able to do this quickly.
NOTE: The id# of: menu-item-13395 is the id of that particular menu link. This CSS code targets and adds the icon only to that item.