0

I want to overwrite some css from Bootstrap in my application. I have chosen to run the Bootstrap theme that is included with the extension library. But if I include a css and add it to my application theme (which extends="Bootstrap3_flat") the css is overwritten. How can I fix this? I assume it is the order of loading that causes the overwritten.

Malin
  • 685
  • 4
  • 16

2 Answers2

0

added the important css declaration as in

.btn {
    margin-left:10px !important;
}
Malin
  • 685
  • 4
  • 16
0

Add !important at the end of your style..

Maniraj Murugan
  • 7,703
  • 16
  • 63
  • 106
  • Using !important is not the best way http://stackoverflow.com/a/27704409/171456 – Zim Apr 27 '17 at 10:37