On Thursday, July 7, 2011 3:46:10 PM UTC-4, Jim S wrote: 
>
>  Only problem now is that the input field lengths are getting set to 280px 
> and I can't find how to override them.
>
 
I think that's set in the /static/css/base.css file:
 
input[type=text], input[type=password], textarea, select {
    margin: 2px 15px 2px 5px;
    width: 280px;      
    background: #fff;
    color: #555;
    border: 1px solid #dedede; 
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;       
    font-size: 12px;
}
 
Also, see http://web2py.com/book/default/chapter/07#CSS-Conventions for 
details on css-based customization.
 
Anthony
 

Reply via email to