Bootstrap change default blue color?

Bootstrap change default blue color?

The default bootstrap blue link color is: #337AB7;

Link Test

If you want to make the visited link to have the default purple color, use:

a:visited { color:#551A8B; !important; }

To change it, just use inspect and use !important to overwrite the default bootstrap blue color.

Add a comment: