Forum Replies Created
- AuthorPosts
josef777
Participantput this in your stylesheet and play with the colors
input:focus{
border:2px solid #299292!important;
-webkit-box-shadow:0 0 6px #007eff!important;
-moz-box-shadow:0 0 5px #007eff;
box-shadow:0 0 5px #007eff;}
josef777
Participantalso the time function is not working , it is required even the time is in another hidden group
// Time HH MM
add_action('iphorm_pre_display_1', 'mytheme_fix_time', 10, 1);function mytheme_fix_time($form)
{
// Sets the default time to HH:MM
$time = $form->getElement('iphorm_1_11');
$time->setValue(array('hour' => '', 'minute' => '', 'ampm' => 'am'));
$time = $form->getElement('iphorm_1_26');
$time->setValue(array('hour' => '', 'minute' => '', 'ampm' => 'am'));
$time = $form->getElement('iphorm_1_34');
$time->setValue(array('hour' => '', 'minute' => '', 'ampm' => 'am'));
$time = $form->getElement('iphorm_1_48');
$time->setValue(array('hour' => '', 'minute' => '', 'ampm' => 'am'));
$time = $form->getElement('iphorm_1_54');
$time->setValue(array('hour' => '', 'minute' => '', 'ampm' => 'am'));
$time = $form->getElement('iphorm_1_57');
$time->setValue(array('hour' => '', 'minute' => '', 'ampm' => 'am'));
}add_action('iphorm_element_valid_iphorm_1_11', 'mytheme_validate_time', 10, 3);
add_action('iphorm_element_valid_iphorm_1_26', 'mytheme_validate_time', 10, 3);
add_action('iphorm_element_valid_iphorm_1_34', 'mytheme_validate_time', 10, 3);
add_action('iphorm_element_valid_iphorm_1_48', 'mytheme_validate_time', 10, 3);
add_action('iphorm_element_valid_iphorm_1_54', 'mytheme_validate_time', 10, 3);
add_action('iphorm_element_valid_iphorm_1_57', 'mytheme_validate_time', 10, 3);function mytheme_validate_time($valid, $value, $element)
{
// Validates that the time is not empty
if ($value['hour'] === '' || $value['minute'] === '') {
$element->addError('This field is required');
$valid = false;
}
return $valid;
}
josef777
ParticipantSorry , i couldn’t edit the post to fix the code tag
josef777
Participanttry the smtp option and see if it works , and i am sure one of quform support team will have an answer to your question if this is the only option .
josef777
Participantthey have just released an update version with the fix
josef777
ParticipantGo to settings > Style and add “form outer wrapper” and add to it the following styles
padding: 10px;
width: 215px;
min-width:215px;
play with the above numbers till you are happy !
josef777
ParticipantRemove the
<pre></pre>
tags around your form and see if that helpsjosef777
ParticipantI solved this by going to style > add a style then add “Form Elements wrapper” and add this style to it
white-space: nowrap;
josef777
ParticipantPerfect
Thanks Allyjosef777
ParticipantGo to the form settings > Style and at the bottom where it says “add a style” add “Submit button outer wrapper” and give it this style float:right;
josef777
ParticipantFantastic , this is how it should be !
Many Thanks Ally
Attachments:
You must be logged in to view attached files.josef777
ParticipantThat is Good news , Thanks
josef777
ParticipantThanks Ally
josef777
ParticipantAny news on how to show group Titles in Notifications and Autoreply Emails ?
This is the only thing left for me to go live with the Forms .Thanks
- AuthorPosts