The Time Field on my "Request A Quote" page (http://fogcityent.com/request-quote/) is not displaying properly in IE (surprise!). I would guess it's just a CSS fix but would like to get some concrete advice before I go poking around.
Thanks,
Tom
The Time Field on my "Request A Quote" page (http://fogcityent.com/request-quote/) is not displaying properly in IE (surprise!). I would guess it's just a CSS fix but would like to get some concrete advice before I go poking around.
Thanks,
Tom
What version of IE are you referring to? I checked in IE8 and everything seems to be fine.
Also, what isn't displaying properly? Margins, alignment, labels, select box ?
I checked in IE8. The cursor won't go in the HH box on Event Time - Start. I see you did it but I've had complaints from others that they can't do it (& I couldn't do it either).
Of course, it works perfectly on Firefox etc.
Okay, thanks. I'll test it some more and see if I can offer any help.
I am running into the same issue.
- Gets cut off on IE 7
- Also there is no maxlength set so more than 2 characters can be entered
Any idea when this will be fixed?
Are there any other work around to handle times besides a text field and radio buttons/drop down for AM/PM?
The time field has been tested in IE7 and worked fine. It's most likely inheriting something from your theme and I may need to see it to know what to fix.
As far as the maxlength, I'll mention that to the team so we can get that updated in a future release.
Try appending this to your theme style sheet to fix the alignment issue..
.gform_wrapper .gfield_time_hour input, .gform_wrapper .gfield_time_minute input{*margin-left:0;}
and you can add the maxlength attribute to the time fields for now with some jQuery added to you theme header file.
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('.gfield_time_hour input').attr('maxlength', '2');
jQuery('.gfield_time_minute input').attr('maxlength', '2');
});
</script>
Let us know if that works for you.