I am having troubles with my theme`s Contact Form 7, when I try to hover on the clickable items [name, email, phone], they are not clickable. This is not true for the message body, where I can type my message. The odd thing is that those boxes work in the mobile version.
I have highlithed the boxes that cannot be clicked
Any ideas?
<div class="contact-con">
<div class="contact_form mb-0" data-aos="fade-up">
<div class="row">
<div class="col-12">
<ul class="list-unstyled mb-0">
<li class="">
<div class="form-group float-left small_box position-relative">
[text fname class:form_style id:fname placeholder "First Name"]
</div>
</li>
<li class="">
<div class="form-group float-left position-relative">
[text lname class:form_style id:lname placeholder "Last Name"]
</div>
</li>
<li class="">
<div class="form-group float-left small_box position-relative">
[email* email class:form_style id:email placeholder "Email"]
</div>
</li>
<li class="">
<div class="form-group float-left position-relative">
[tel phone class:form_style id:phone placeholder "Phone"]
</div>
</li>
<li class="">
<div class=" message">
[textarea msg class:form_style class:w-100 id:msg placeholder "Message"]
</div>
</li>
<li class="button">
<div class="manage-button">
<button type="submit" id="submit" class="submit_now text-white text- decoration-none">Submit<i class="fa-solid fa-arrow-right"></i></button>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
I actually do not know what to modify as it looks all good to me
floatproperty might be causing this. Also, Please do not use floats for layout. There are better methods now including flexbox and CSS Grid - and BS5 has them built in. Remove all thefloat-leftclasses to test.<button type="submit">instead of the CF7 Form Tag[submit]