Generally what we do is use the .less versions of the bootstrap style sheets and then make our own less sheets we put at the end of theme.less Alternatively if you're using the compiled css and you want to overrdie some styles without nuking parts of the default bootstrap implementation, just make sure your .css file link tag is after the bootstrap.min.css link tag in your markup
On Thu, May 17, 2012 at 9:24 AM, Tom Fulcher <[email protected]>wrote: > all you need to do is make sure that your style declaration is AFTER > bootstraps declaration of the same style and it should be given a higher > priority.. > > > On Thu, May 17, 2012 at 9:19 AM, Lucyland <[email protected]> wrote: > >> Hi, I'm trying to augment this div to remove the 160px left-padding >> and center the buttons in an additional new style sheet I've made: >> >> .form-horizontal .form-actions { >> padding-left: 160px; >> } >> >> Any suggestions? Thanks! > > >
