How can I delete a specific css property in Bootstrap3 ?
I work with another template from HTML5up. But I'd like to use Bootstrap too for its carousel. I've got conflicts between them. So, I inspected the code with the Firefox debugger and the Bootstrap code seems to be getting priority on my other CSS code. I tried to write my code in main.css, but it's always the Bootstrap code is retained and not my code. I think I should delete or remove the properties I don't need.
More precisely, I want to change a font-size
to my p
in my body
. I write font-size:21px
; in a main.css but in bootstrap code is 14px
for default. All my texts are in 14px
. The same with the property line-height who's different in bootstrap code.
What is the best way to avoid incompatibilities ?