By drupalfriend123 on
Hi,
I created a webform. Now, I see the webform just fine. Last field name is my note (markup). I like to add this field for note after the Submit button. That means that my note field will display below the submit button. I am not sure how I can do it. Can you please help?
submit button css:
.webform-client-form-132 .form-actions {
clear: both;
BACKGROUND: #fca603;
PADDING: 10PX;
TEXT-ALIGN: CENTER;
margin: 0;
}mynote field css:
.mynote{
color: red;
margin-top: 100px;
}// How can I bring the mynote down without bringing down the submit button?
Comments
A padding-top on your .mynote
A padding-top on your .mynote field to accomodate the button and a negative top margin on .form-actions which pulls that whole thing up should work I believe, but making it work for responsive displays .. woah.