[Lift] Re: MappedTextarea problem

2009-03-15 Thread Xavi Ramirez
For the sake of better understanding the internals of lift where is screen.css? On Wed, Mar 11, 2009 at 6:32 PM, Joachim A. wallaby.po...@googlemail.com wrote: David, I suggest to leave blueprint as it is and to create your own stylesheet. Create a directory in the webapps dir and put a new

[Lift] Re: MappedTextarea problem

2009-03-15 Thread David Pollak
On Sun, Mar 15, 2009 at 8:33 PM, Xavi Ramirez xavi@gmail.com wrote: For the sake of better understanding the internals of lift where is screen.css? /classpath/* is served from the lift-http JAR. It's baked into the JAR as part of the build process. On Wed, Mar 11, 2009 at 6:32 PM,

[Lift] Re: MappedTextarea problem

2009-03-12 Thread DavidV
I'm working on making my own style sheet now, thanks for the help. One more question: What if I have multiple text areas on one page but what them to be of different sizes? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[Lift] Re: MappedTextarea problem

2009-03-12 Thread Joachim A.
Hi, just use different CSS classes. For example: textarea class=large/textarea textarea class=small/textarea with the CSS code textarea.large { height:200px; width:400px; } textarea.small { height:100px; width:200px; } will give you two textareas with differnt sizes. Just have a look at some

[Lift] Re: MappedTextarea problem

2009-03-06 Thread TylerWeir
blueprintCSS which is more than likely the CSS boss for your app defines textarea style in screen.css. I tend to add a dedicated stylesheet for just such an overriding- required situation. Tyler On Mar 3, 5:05 pm, Derek Chen-Becker dchenbec...@gmail.com wrote: I agree with Joachim, this is

[Lift] Re: MappedTextarea problem

2009-03-03 Thread Joachim A.
It might be the case that David has some css rules which change the size of the textarea. It's easy to check in firebug or something similair to see what the applied values are. Joachim Can you post the generated XHTML for the textarea? I would want to verify that it's actually setting the

[Lift] Re: MappedTextarea problem

2009-03-03 Thread Derek Chen-Becker
I agree with Joachim, this is most likely a CSS issue since we're seeing explicit rows and cols attributes on the element. If you get firebug and inspect the page with it, you should be able to see what is controlling the textarea size. Derek On Tue, Mar 3, 2009 at 3:29 PM, DavidV