Hi all, I have created a form to insert new records (see "Selección_001.png") with two mandatory fields ("name" and "surname") but if I try to insert a blank record (so it is invalid) I get the two errors (that is correct) but the page layout is modified (see "Selección_002.png"), which is not correct. As you can see "Name" label, "name" text box, "Surname" label, and "surname" text box are moved each one to a new line (which is different from to original layout) I have tried to delete ALL css files on the folder but without success ("Selección_003.png"), the red color disappears but the layout is still modified ;-( Does anybody know what file I have to update to avoid this change in my layout? Thanks! Jorge Attachments: http://www.ruby-forum.com/attachment/8698/Selecci_n_001.jpg http://www.ruby-forum.com/attachment/8699/Selecci_n_002.jpg http://www.ruby-forum.com/attachment/8700/Selecci_n_003.jpg -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/d58e2d14938e2972f54496d8a56ec407%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.
On 29 August 2013 21:03, Jorge C. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Hi all, > > I have created a form to insert new records (see "Selección_001.png") > with two mandatory fields ("name" and "surname") but if I try to insert > a blank record (so it is invalid) I get the two errors (that is correct) > but the page layout is modified (see "Selección_002.png"), which is not > correct. > > As you can see "Name" label, "name" text box, "Surname" label, and > "surname" text box are moved each one to a new line (which is different > from to original layout) > > I have tried to delete ALL css files on the folder but without success > ("Selección_003.png"), the red color disappears but the layout is still > modified ;-( > > Does anybody know what file I have to update to avoid this change in my > layout?Using Firebug in Firefox you can inspect the css and see what is going on. Also inspect the html and see what has changed there. Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAL%3D0gLu2AtKBLg--jqaeZv-rw8S4ArODAxmDu3Sr5L0uDn3%2BMg%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
Thanks Colin! The "issue" was on HTML code: each faulty HTML tag was being wrapped inside a new <div>, so the default behavior was to start a new line. I have added "display:inline-block" in the CSS class and everything is working perfect now. Thanks!! -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/b93211450efe3882d36beeaa5c4b5f08%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.