Disable Bootstrap Font

I have a website that uses boot CSS / JS. I am having a problem when the bootstrap font conflicts with the font I would like to use. Example:

With my font

http://i.stack.imgur.com/PiGGn.png

But when I use bootstrap CSS, the font conflicts with mine (instead of the Uses font bootstrap instead of the one I installed)

Bootstrap CSS - there is a font

http://i.stack.imgur.com/04gck.png

Is there anyway to remove the boot font (Typography) or some of them, how to use my font?

On the side of the note: CSS / JS was added to the site for less coding for me. The website itself was not encoded using any class from Bootstrap.

+7
javascript html css fonts twitter-bootstrap
source share
1 answer

Try loading the custom CSS file after the initial loading in the page header. For example:

<link rel="stylesheet" href="css/bootstrap.css" />

<link rel="stylesheet" href="css/your-stylesheet.css" />

+6
source share

All Articles