Is it possible to make that groovy in_place_editor wider? As is, it''s only about 20 chars wide. thanks Joe -- Posted via http://www.ruby-forum.com/.
Joe wrote:> Is it possible to make that groovy in_place_editor wider? As is, it''s > only about 20 chars wide. > > thanks > JoeYou need to use the pre-defined CSS styles to do that. http://wiki.rubyonrails.org/rails/pages/HowToStyleInPlaceEditorWithCss -- Posted via http://www.ruby-forum.com/.
Ah, thanks! This does the trick: .inplaceeditor-form input[type=text] { width: 200px; } Joe -- Posted via http://www.ruby-forum.com/.
> This does the trick: > > .inplaceeditor-form input[type=text] { width: 200px; }If you have two different inplace editors on a page, is it possible to set them each to different widths? Joe -- Posted via http://www.ruby-forum.com/.