[ad_1]
Hey there,
I am currently working with CF7 and it works just as we need. However, I would like to enlarge the “choose file” button in the form so people can see more easily that they can upload something.
I know that I can assign a CSS-class to that specific field but I need help with increasing the size of the button. How can I do this? I can read and modify CSS but I am definitely not able to write it on my own.
[ad_2]
It’s normally just padding. So whatever the button class is..
.button { padding: 20px 30px}
Where the first value is top and bottom and the second is left and right.
Might help to increase the font size too soo..
.button { padding: 20px 30px; font-size:24px }