<em>@russh 344548 wrote:</em><blockquote>
However if I amend the font size to be larger, it amends the menu font size as well (menu type is Moo menu). I want the menu font size to remain at 12px, but the body txt to be at 13 pt.
</blockquote>
Hi,
To set menu font size to 12px, go to this file
templates/your_templat_folder/ja_menus/ja_moomenu/ja.moomenu.css
Find these lines:
#ja-cssmenu {
float: left;
margin: 0;
padding: 0;
}
change to:
#ja-cssmenu {
float: left;
font-size: 12px;
margin: 0;
padding: 0;
}
For entire website font
in
templates/your_template_folder/css/template.css
:
find
body.fs3 {
font-size: 12px;
}
Increase font-size to 13px;