I recently set up Contact Form 7 on my WordPress website and was able to customize the appearance of all the fields except for the File Attach button. I have added the necessary code in the Contact Form 7 module within the admin panel and have also included the corresponding CSS in the style.css file.
Does anyone have a solution for styling the File Attach button?
<div class="container">
<div class="row">
<div class="col-md-4">
<p>Your Name (required)<br />
[text* your-name] </p>
</div>
<div class="col-md-4">
<p>Your Email (required)<br />
[email* your-email] </p>
</div>
<div class="col-md-4">
<p>Subject<br />
[text your-subject] </p>
</div>
</div>
<div class="row">
<div class="col-md-8">
<p>Your Message<br />
[textarea your-message] </p>
</div>
<div class="col-md-4">
[file* uploadcv limit:50000000 class:cv-upload]
</div>
</div>
<div class="row">
<div class="col-md-4 ">
[recaptcha id:recapcha class:recapcha]
</div>
<p>[submit "Send"]</p>
</div>
</div>