Hello AHPhoto,
Our Theme Clean Retina does not support image in the slogan section, it only supports text as slogan.
About changing the font in the menu.
Go to Appearance -> Theme Option -> Design Option Tab -> Custom CSS
and paste the following CSS code to change the font-family
as well as font-size
in the menu:
#access a {
font: YOUR-FONT-SIZE YOUR-FONT-FAMILY;
}
and one more thing if you also want to control the font-family
and font-size
of drop-down menus then also paste the following CSS code:
#access ul li ul li a,
#access ul li.current-menu-item ul li a,
#access ul li ul li.current-menu-item a,
#access ul li.current_page_ancestor ul li a,
#access ul li.current-menu-ancestor ul li a,
#access ul li.current_page_item ul li a {
font: YOUR-FONT-SIZE YOUR-FONT-FAMILY;
}
Note: Change YOUR-FONT-SIZE field for font-size
in PX, YOUR-FONT-FAMILY field for font-family
.
For Example:
If you need to put font-family
‘Arial’ with 14px for main top menu
and want to put font-family
‘verdana’ with 13px for drop-down menu then your CSS code should be:
#access a {
font: 14px 'Arial';
}
#access ul li ul li a,
#access ul li.current-menu-item ul li a,
#access ul li ul li.current-menu-item a,
#access ul li.current_page_ancestor ul li a,
#access ul li.current-menu-ancestor ul li a,
#access ul li.current_page_item ul li a {
font: 13px 'verdana';
}
Thank you for using our theme.
Regards
Team Horse