Quote Originally Posted by chadderuski View Post
Jade,

Found a bug, but not yours! If you look at the contact us page you will notice that the bottom field is not properly aligned for the Message area:

open tpl_contact_us_default.php and go to line 72 (or so) and look at the entry for "enquiry".

The <label> is missing it's class: class="inputLabel"

This will fix the offset of "Message:"

HOWEVER, I cannot seem to get the textarea to line up on the left correctly.

Any ideas? I have tried several things in the CSS to fix this by no success so far.

Also, it seems that zen_draw_textarea_field() does not respect the width parameter....?
Textarea's have its own section in the css. If you want it to line up, it looks like changing its width to 97 does the trick:

TEXTAREA {
margin:auto;
display:block;
width:97%;
}

As far as it not respecting its width, that's because I set it as 97% wide in the css. If you'd like that aspect gone, the code below will let it use its own width, and will also align:

TEXTAREA {
margin:auto;
display:block;
float:left;
margin:.5em;

}