Issue with Internet Explorer - Responsive Contact
- Posted by zapico (2) Offline
Hi,
I test my template via chrome/firefox and IE (9).
On Internet Explorer, I cannot see the texts in the boxes "name", "mail, "message". and "Are you human?". so difficult for those using IE to sent me message.
How can I solve this? is it just an color issue? or is it a compatibility issue?
thanks for your help !!
Regards,
10 years 1 day ago #1
by zapico
I test my template via chrome/firefox and IE (9).
On Internet Explorer, I cannot see the texts in the boxes "name", "mail, "message". and "Are you human?". so difficult for those using IE to sent me message.
How can I solve this? is it just an color issue? or is it a compatibility issue?
thanks for your help !!
Regards,
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5310) Offline
Hi, it's because IE9 doesn't support latest html5 placeholder property. Let me check what can I do for this. I'll back to you soon.
10 years 14 hours ago #2
by TemplatePlazza
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5310) Offline
ok can you try to open this file with your favorite php editor :
[root]/modules/mod_contactmap/tmpl/default.php around line 265 you will see this code :
Please try to change to
10 years 14 hours ago #3
by TemplatePlazza
[root]/modules/mod_contactmap/tmpl/default.php around line 265 you will see this code :
<form action="<?php echo $url; ?>" method="post">
<?php echo $pre_text_form; ?>
<div class="rownameemail clearfix">
<div class="namecontainer">
<input type="text" class="input-small" name="rp_name" value="<?php echo $CORRECT_NAME; ?>" placeholder="<?php echo JText::_('MOD_CONTACTMAP_NAME_LABEL'); ?>"/>
</div>
<div class="emailcontainer">
<input type="text" class="input-small" name="rp_email" value="<?php echo $CORRECT_EMAIL; ?>" placeholder="<?php echo JText::_('MOD_CONTACTMAP_EMAIL_LABEL'); ?>"/>
</div>
</div>
<div class="subjectcontainer">
<input type="text" class="input-small" name="rp_subject" value="<?php echo $CORRECT_SUBJECT; ?>" placeholder="<?php echo JText::_('MOD_CONTACTMAP_SUBJECT_LABEL'); ?>"/>
</div>
<div class="antispamcontainer">
<textarea name="rp_message" rows="4" placeholder="<?php echo JText::_('MOD_CONTACTMAP_MESSAGE_LABEL'); ?>"><?php echo $CORRECT_MESSAGE; ?></textarea>
</div>
<?php if ($enable_anti_spam) :?>
<div class="subjectcontainer">
<input type="text" class="input-small" name="rp_anti_spam_answer" value="<?php echo $CORRECT_ANTISPAM_ANSWER; ?>" placeholder="<?php echo $myAntiSpamQuestion; ?>"/>
</div>
<?php endif; ?>
<div>
<input class="btn btn-primary button expand" type="submit" style="margin:0;" value="<?php echo JText::_('MOD_CONTACTMAP_SUBMIT_LABEL'); ?>"/>
</div>
</form>
Please try to change to
<form action="<?php echo $url; ?>" method="post">
<?php echo $pre_text_form; ?>
<div class="rownameemail clearfix">
<div class="namecontainer">
<!--[if IE 9]>
<div >Name</div>
<![endif]-->
<input type="text" class="input-small" name="rp_name" value="<?php echo $CORRECT_NAME; ?>" placeholder="<?php echo JText::_('MOD_CONTACTMAP_NAME_LABEL'); ?>"/>
</div>
<div class="emailcontainer">
<!--[if IE 9]>
<div >Email</div>
<![endif]-->
<input type="text" class="input-small" name="rp_email" value="<?php echo $CORRECT_EMAIL; ?>" placeholder="<?php echo JText::_('MOD_CONTACTMAP_EMAIL_LABEL'); ?>"/>
</div>
</div>
<div class="subjectcontainer">
<!--[if IE 9]>
<div >Subject</div>
<![endif]-->
<input type="text" class="input-small" name="rp_subject" value="<?php echo $CORRECT_SUBJECT; ?>" placeholder="<?php echo JText::_('MOD_CONTACTMAP_SUBJECT_LABEL'); ?>"/>
</div>
<div class="antispamcontainer">
<!--[if IE 9]>
<div >Message</div>
<![endif]-->
<textarea name="rp_message" rows="4" placeholder="<?php echo JText::_('MOD_CONTACTMAP_MESSAGE_LABEL'); ?>"><?php echo $CORRECT_MESSAGE; ?></textarea>
</div>
<?php if ($enable_anti_spam) :?>
<div class="subjectcontainer">
<!--[if IE 9]>
<div >Antispam Question : <?php echo $myAntiSpamQuestion; ?></div>
<![endif]-->
<input type="text" class="input-small" name="rp_anti_spam_answer" value="<?php echo $CORRECT_ANTISPAM_ANSWER; ?>" placeholder="<?php echo $myAntiSpamQuestion; ?>"/>
</div>
<?php endif; ?>
<div>
<input class="btn btn-primary button expand" type="submit" style="margin:0;" value="<?php echo JText::_('MOD_CONTACTMAP_SUBMIT_LABEL'); ?>"/>
</div>
</form>
Please Log in or Create an account to join the conversation.
- Posted by zapico (2) Offline
- Posted by TemplatePlazza (5310) Offline
Nice, Please let me know if you have more questions going forward.
9 years 11 months ago #5
by TemplatePlazza
Please Log in or Create an account to join the conversation.