Forum Replies Created
- AuthorPosts
josef777
ParticipantDid you read this article?
josef777
ParticipantThat sounds too easy to do , what difficulties you facing making this form ?
josef777
Participantadd html element and put this in it
<script type="text/javascript">
jQuery(function($) {
$('.iphorm_1_1').attr('readonly', true);
});
</script>
change .iphorm_1_1 to your field ID .
josef777
Participanttry this http://jsfiddle.net/Xotic750/kyKsK/ or wait for ally , i am sure he has a better solution !
josef777
ParticipantYou can use the Description or the tooltip to inform the user not to use http:// but is you want to use javascript just add a HTML field and put the following in it
<script>
jQuery(document).ready(function ($){
$('.iphorm_1_1').keyup(function(){
var s= $(this).val();
if (s.indexOf("http://") != -1)
alert("please without http://");
});
});
</script>
change .iphorm_1_1 to your field ID
josef777
Participantuse <br/> after each line !
josef777
ParticipantEdit this code to something like
#sidebar input[type="text"] {
margin-bottom: 0;
height: 25px;
}
josef777
ParticipantStart by editing the following or add to your custom CSS
#sidebar input[type="text"]{
margin-bottom: 10px;
height: 40px;
}
located in http://www.rebathdfw.com/wpx-content/themes/nevermind/style.css
Line 2235josef777
ParticipantThe Label Padding is Missing in your New form
padding: 84px 5px 5px;josef777
ParticipantYou should look at those 2 forms , import them and look at the code , it is very easy to do .
https://www.quform.com/examples/inline-button
https://www.quform.com/examples/using-groupsjosef777
ParticipantYou can hide it with CSS
.iphorm-submit-input-wrap-2 {display:none;}
change 2 to your form ID
josef777
ParticipantSee This Article
josef777
ParticipantGo to your Form and remove the Value of “Select Department ”
Your Drop down should look something like this
Attachments:
You must be logged in to view attached files.- AuthorPosts