I'm working with a WordPress theme and I need to use Bootstrap for a certain page.
The page header includes these two styles:
<link rel="stylesheet" href="default.css">
<link rel="stylesheet" href="bootstrap.min.css">
Is there a way to avoid using bootstrap if the style is defined in default.css?
Or is making each line !important in the first one the only available option?