Hello,
For some reason when I click on my simple input box, the input box does not accept focus. Has anyone has a solution fot this? Here is a link to the webpage:
http://landbankrealestate.com/en/properties/lote-en-condominio-las-vueltas/
The only way I can enter data into the box is to use tab to highlight it first.
I've read a similar problem here in a 9 years old thread (https://www.daniweb.com/digital-media/ui-ux-design/threads/127910/input-box-not-accepting-focus#post2228704) ... but I don't know how can I fix this with my code
Here is my code:
<div class="agent_contanct_form ">
<?php
if ( basename(get_page_template())!='contact_page.php') { ?>
<h4 id="show_contact"><?php _e('Contact Me', 'wpestate'); ?></h4>
<?php
}else{
?>
<h4 id="show_contact"><?php _e('Contact Us', 'wpestate'); ?></h4>
<?php } ?>
<?php if ( ($contact_form_7_agent =='' && basename(get_page_template())!='contact_page.php') || ( $contact_form_7_contact=='' && basename(get_page_template())=='contact_page.php') ){ ?>
<div class="alert-box error">
<div class="alert-message" id="alert-agent-contact"></div>
</div>
<input name="contact_name" id="agent_contact_name" type="text" placeholder="<?php _e('Your Name', 'wpestate'); ?>"
aria-required="true" class="form-control">
<input type="text" name="email" class="form-control" id="agent_user_email" aria-required="true" placeholder="<?php _e('Your Email', 'wpestate'); ?>" >
<input type="text" name="phone" class="form-control" id="agent_phone" placeholder="<?php _e('Your Phone', 'wpestate'); ?>" >
<textarea id="agent_comment" name="comment" class="form-control" cols="45" rows="8" aria-required="true" placeholder="<?php _e('Your Message', 'wpestate'); ?>" ></textarea>
<input type="submit" class="wpresidence_button agent_submit_class" id="agent_submit" value="<?php _e('Send Message', 'wpestate');?>">
Kind Regards,