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
  • 697
  • 5
  • 21

2 Answers2

0

added the important css declaration as in

.btn {
    margin-left:10px !important;
}
Malin
  • 697
  • 5
  • 21
0

Add !important at the end of your style..

Maniraj Murugan
  • 8,868
  • 20
  • 67
  • 116