Mobile app version of vmapp.org
Login or Join
Martha945

: Cant Change Font Face in CSS I am making a Responsive Webpage Using BootStrap. That Have "helvetica neue" Font By Default. But It Doesnt Suit to my Web Page. So I Had used Custom Google Fonts.

@Martha945

Posted in: #Css #FontFace #Fonts #WebFonts #WebsiteDesign

I am making a Responsive Webpage Using BootStrap.

That Have "helvetica neue" Font By Default. But It Doesnt Suit to my Web Page.

So I Had used Custom Google Fonts.

For Import:


fonts.googleapis.com/css?family=Syncopate' rel='stylesheet' type='text/css'>


For Use this in my Webpage I had made Custom CSS In that:


body { font-family: 'Syncopate', sans-serif; }


But Still I am seeing "helvetica neue" Font on my Webpage.

Cant Anyone tell me where is the problem please.

Thanks

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Martha945

1 Comments

Sorted by latest first Latest Oldest Best

 

@Berryessa866

Add this after your piece of CSS and before the closing semi-colon: !important

So:

body { font-family: 'Syncopate', sans-serif!important; }


This will bazooka through any other style settings (unless they also use !important).

Also, remember that:
fonts.googleapis.com/css?family=Syncopate' rel='stylesheet' type='text/css'>


should be:

<link href='http://fonts.googleapis.com/css?family=Syncopate' rel='stylesheet' type='text/css'>


Also, I think this is the wrong place to ask!

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme