Hi
I have a little problem with contact form 7 plugin, the form looks very bad on smartphones, in particular the submit button, do you have a solution to resolve this ?
.
Hi,
In general we don’t provide support for third party plugin, but if you let us know what you would like to change then we might be able to provide you with some CSS.
Best regards,
Rikard
Hi,
I understand and i thank you for response.
I would like the submit button be responsive on smartphone, everything is responsive in the page except the button “ENVOYEZ MOI LES INFORMATIONS”. It is embarrassing.
This is the only thing i need.
You can see the page in the private content.
Regards,
Alexis
Hi,
Try this code in the General Styling > Quick CSS field:
@media only screen and (max-width: 1050px) {.cf7-style.cf7-style-5304 input {
width: 90%!important; }
.cf7-style.cf7-style-5304 input[type='submit'] {font-size: 10px!important; }}
Best regards,
Mike
Hi mike,
thank you for response, it works! Just a little thing, all the form isn’t centered anymore, any sugestions to fix this?
Regards,
Alexis
Hi,
ops, I meant to target the button only, try this instead:
@media only screen and (max-width: 1050px) {.cf7-style.cf7-style-5304 input[type='submit'] {
width: 90%!important; }
.cf7-style.cf7-style-5304 input[type='submit'] {font-size: 10px!important; }}
Best regards,
Mike
Great ! Works 100%, Thank you !