Change color scheme using BootstrapCDN

css, html, less, twitter-bootstrap

Solution

Most simplest way. There's no harm in using bootstrap CDN.

<link href="bootstrap.min.css" rel="stylesheet">
<link href="bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/custom-bootstrap-override.css" rel="stylesheet">

how to fallback twitter-bootstrap cdn to local copy

Problem

I am building a website using Bootstrap and am getting the files through BootstrapCDN. What is the best way to go about modifying the color scheme when using BootstrapCDN. Am I better off to not use the CDN? For example - I want to change the color of the links. To do this I did `a{color:#000000}` - but want to know if there is a better way. Thanks!

Original source

Related problems