Re: bootstrap django crispy forms

2016-03-01 Thread jarmovanlenthe
You should use #burton in your CSS, not .burton. You set the css_id, not the css_class to burton. Jarmo On Tue, Mar 1, 2016 at 1:39 AM James Schneider wrote: > On Fri, Feb 26, 2016 at 7:39 AM, wrote: > >> A simple upload button is proving difficult to implement bootstrap and >> css on My a

Re: bootstrap django crispy forms

2016-02-29 Thread James Schneider
On Fri, Feb 26, 2016 at 7:39 AM, wrote: > A simple upload button is proving difficult to implement bootstrap and css > on My attempt is as follows: > > class DocumentForm(forms.Form): >docfile = forms.FileField(label='Choose') >def __init__(self, *args, **kwargs): # don't

Re: bootstrap django crispy forms

2016-02-26 Thread Mike Dewhirst
This is probably wrong for your case but occasionally I have had success overriding (or is that cascading?) style sheets by adding "!important" to the pertinent item in my .css file. On 27/02/2016 2:39 AM, clarksonchri...@gmail.com wrote: A simple upload button is proving difficult to implemen