@angiemorrissey @andygrantonline If you look on the Easy Restaurant Menu Manager plugin’s support site, you will see a link for “Custom fonts using CSS“. That link says:
Fonts and sizes are not defined in the Easy Restaurant Menu Manager plugin for WordPress. This is intentional so that when installed, the plugin’s output matches the installed WordPress theme’s fonts and size scheme. In general, this works seamlessly but occasionally fonts need to be changed or increased in size in order to stand out.
Easy Restaurant Menu Manager includes a settings box for including custom CSS to tweak styles.
Examples
Customize fonts for a menu item title and description
.wprmm_menu .menu_category h3{
font-size:24px !important;
font-family: Times,Georgia,Serif !important;
}
.wprmm_menu .menu_category p{
font-size:12px !important;
}
Customize menu category name and description
.wprmm_menu .menu_category h2{
font-size: 18px !important;
font-family: Times,Georgia,Serif !important;
}
.wprmm_menu .menu_category p.menu_category_desc{
font-size: 18px !important;
padding-bottom: 12px !important;
}
Obviously, you will need to use whatever font, size, and other styling that you prefer, but it’s not difficult to do. From WordPress dashboard just navigate to plugin’s Manage Menus | Settings page and enter your CSS there.
Also, to the folks who complain about no support, they do seem to provide support on the SAI Digital web site, just not here in the WordPress forums.
I hope that helps.