Tagged: buttom, CONTACT FORM, font, mobile
Hello,
On the contact page I have an enfold contact form.
The font in the submit button and the font in the drop-down menu (I created choices within a menu), is different from the font in the entire form and site.
How can I change the font just there?
It is important to note that on the mobile the font is fine! It’s just on the computer.
In addition, I would love to increase the button to 100% of the row width and the send button to be centered.
– adress is in the “private content”
Thank you!
Hey top1projects,
Please try this in Quick CSS for the button:
.avia_ajax_form input.button {
font-family: 'helvetica neue','HelveticaNeue','Helvetica-Neue',Helvetica,Arial,sans-serif !important;
width: 100%;
}
The select options are generated by the operating system as far as I know, so they can likely not be styled using CSS, but you can try this to see if it works:
select#avia_4_1 {
font-family: 'helvetica neue','HelveticaNeue','Helvetica-Neue',Helvetica,Arial,sans-serif !important;
}
If not then it’s not possible to style it unfortunately.
Best regards,
Rikard