Is there any code I can put in the css field that will make all fonts Helvetica Neu? or then default to arial, verdana, or san serif?
Thx in advance.
Hey fgrippe!
Go to Enfold > Styling > look for “Defines the Font for your body text”. Select “Helvetica Neue”. Add this on Quick CSS or custom.css:
h1, h2, h3, h4, h5, h6 {
font-family: "Helvetica Neue", "Times New Roman", Georgia, Arial, sans-serif;
}
Cheers!
Ismael
Thx as always Ismael.
I put the code in the custom css field and removed the Times New Roman font because it is a serif font.
I did this:
h1, h2, h3, h4, h5, h6 {
font-family: “Helvetica Neue”, Arial, Verdana, sans-serif;
}
Nothing changed.
?
Hi!
Add !important to the code:
h1, h2, h3, h4, h5, h6 {
font-family: “Helvetica Neue”, Arial, Verdana, sans-serif !important;
}
Regards,
Josue