I have a simple form where I have a label on the left and a form field to the right of it.
Here's my HTML
<p>
<label for="PageText">Page Text</label>
<textarea name="pagetext" id="pagetext"></textarea>
</p>
And my CSS
label{
width: 100px;
margin-top:4px;
float: left;
text-align: right;
margin-right: 5px;
display: block;
border:1px solid black;
}
textarea{
width:500px;
height:100px;
display:block;
}
Everything was lining up just fine until I added a WYSIWYG jQuery plug in to the text area. The plugin puts 2 rows of images for the editor right above the text area element. Unfortunately, the second row of images is now wrapping under my field name.
I don't want to specify the height on the label, as that certainly doesn't sound right.
CSS / Front End isn't my strong area. Do I need to throw both the label and text area in div's?
Thanks so much!