Hi, for some reason, after the recent update, the font on the submit button of a contact form element doesn’t match the font on the rest of the site.
How can I fix this?
Hey DROR,
Please try the following in Quick CSS under Enfold->General Styling:
input[type='submit'] {
font-family: "Open Sans Hebrew" !important;
}
Best regards,
Rikard
Thanks Rikard, what about the message field?
Hi,
Add this to quick css:
textarea {
font-family: "Open Sans Hebrew" !important;
}
Best regards,
Jordan Shannon
Thanks, it seesm to be a general issue after the latest update.
How can I make this effect all type of fields?
Thanks.
Hi,
You would use the following:
input,textarea {
font-family: "Open Sans Hebrew" !important;
}
Best regards,
Jordan Shannon
Thanks, what about the select option?
Hi,
Just add it to the css:
input,textarea, select {
font-family: "Open Sans Hebrew" !important;
}
Best regards,
Jordan Shannon