Comments culturedguru started the conversationSeptember 20, 2019 at 4:52pmI have managed to add custom fonts to my site, but in the picture I would like "recipes" to be the same font as "Categories" which is H2 in my site. How can I achieve this?culturedguru repliedSeptember 20, 2019 at 5:29pmFigured this out! Thanks anyways. If anyone is curious I am using Soledad Food and the property I was looking for is .title-bar here is the code I utilized in Custom CSS: .title-bar h1 { font-family: “yourcustomfonthere” !important; text-transformation: "Capitalize"; font-size: 30px !important; font-weight: normal; } Sign in to reply ...
I have managed to add custom fonts to my site, but in the picture I would like "recipes" to be the same font as "Categories" which is H2 in my site. How can I achieve this?
Figured this out! Thanks anyways. If anyone is curious I am using Soledad Food and the property I was looking for is
.title-bar
here is the code I utilized in Custom CSS:
.title-bar h1 {
font-family: “yourcustomfonthere” !important;
text-transformation: "Capitalize";
font-size: 30px !important;
font-weight: normal;
}