Hi dear dazo1720,
original Title ( in line with menu not from header ) css properties
header hgroup h1,
header hgroup h1 > a,
header hgroup > a{
color: #454545;
font-family: Montserrat, sans-serif, Arial, serif;
font-size: 30px;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 35px;
text-transform: uppercase;
}
to change it you can use custom css options from our theme
go to Admin Dashboard > Appearance > Theme Options
here exists section “OTHERS SETTINGS”
with field “Add custom css”
for eample add code:
body header hgroup h1,
body header hgroup h1 > a,
body header hgroup > a{
font-size: 26px;
}
You can add only the properties that you want to change ( for example above it is font-size )
About Menu:
This change is very tricky. Need multiple changes for multiple elements.
base change you need to do is on this code ( add it to custom css fields with your changes ):
body nav.header-nav ul li a{
font-family: Montserrat, sans-serif, Arial, serif;
font-size: 13px;
line-height: 14px;
}
body nav.base-nav ul.mythemes-menu ul li,
body nav.base-nav ul.mythemes-menu ul li a{
font-family: "Noto Sans",sans-serif;
display: block;
}
but there are elements which it is pointless to write because I do not know what changes you want to do.