How would I go about removing the whitespace beside q33 and 34. I've tried editing the label-left class, the email class, the alerts class.. and cannot get the box and label to shift to the left.
How would I go about removing the whitespace beside q33 and 34. I've tried editing the label-left class, the email class, the alerts class.. and cannot get the box and label to shift to the left.
That help text above the field is actually still part of the label class, but if you drill down a bit more with the CSS, you should be able to slide the field left while retaining the help text.
Try this code instead:
#q33 label.cf-label {display:none;}
Try hiding the label
#q34 .label {
display:none;
}
Or something like that
Using
#q34 label { display: none ; }
Does what I want except it removes the label at the top of the text box.
That's a label above the text box? or is that the writing that is supposed to be above the field? Odd, maybe you need to drill down a little more to get a more specific item to hide then. Or you need to use Javascript to put that sentence back above the field
What does the script look like for that ? Whenever I use that css it removes the label to the left and the one above the box.