0
Guys, how to connect css file with bootstrap.I copied link stylsheet for css in head, and all others in body like i was told so.
And when i wrote something in css there is no feedback on page.
2 Answers
+ 2
bootstrap is probably overriding any changes you made in your custom stylesheet/style tag
try:
1. adding your external stylesheet AFTER bootstrap
2. in your CSS add !important to the end of a property declaration, example:
background-color: green!important;
0
thx