Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change color scheme using BootstrapCDN

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!

like image 807
user1453561 Avatar asked Apr 25 '13 12:04

user1453561


People also ask

What is BG light?

BG LIGHT has been a manufacturer of dental equipment for 30 years, starting in 1990. The product range includes a variety of photopolymerization and teeth whitening devices under the BLUEDENT brand, known to dentists from over 110 countries around the world.


2 Answers

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

like image 140
Rajender Joshi Avatar answered Oct 21 '22 01:10

Rajender Joshi


If you want to use BootstrapCDN then you will need to override the css declarations that you want to change in another css file and host that file yourself.

If you have the inclination though you could edit the bootstrap .less files and then compile your own Bootstrap, or use http://twitter.github.io/bootstrap/customize.html to create your own version to download - of course then you would either have to host them all yourself or use another CDN.

like image 1
John Avatar answered Oct 21 '22 03:10

John