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.
Asked
Active
Viewed 265 times
0
-
1Have you used !important to the end of particular style? – Maniraj Murugan Apr 27 '17 at 09:19
-
no, and when I did it worked. Thank you! – Malin Apr 27 '17 at 09:34
-
Welcome @Malin.. – Maniraj Murugan Apr 27 '17 at 09:36
2 Answers
0
Add !important
at the end of your style..

Maniraj Murugan
- 8,868
- 20
- 67
- 116
-
Using !important is not the best way http://stackoverflow.com/a/27704409/171456 – Carol Skelly Apr 27 '17 at 10:37