Hi, help me in my problem plz. I have a following code: <%= error_message_on "guestbook", "text" %> <%= f.label :text, ''Text:'' %> <%= f.text_area :text %> After validation i get HTML: <div class="formError">Error.</div> <div class="fieldWithErrors"><label for="guestbook_text">Text:</label></div> <div class="fieldWithErrors"> <textarea id="guestbook_text" name="guestbook[text]"></textarea> </div> How i can get this: <div class="fieldWithErrors"> <div class="formError">Error.</div> <label for="guestbook_text">Text:</label> <textarea id="guestbook_text" name="guestbook[text]"></textarea> </div> -- Posted via http://www.ruby-forum.com/.