tags:

views:

108

answers:

1

Is it possible to have more than one Cufon font on a website? If so, how?

+1  A: 

Yes it is possible. Link multiple font files to page. And Invoke Cufon.replace with fontFamily attribute. Example:

Cufon.replace('div.contactus-slogan', {
    fontFamily: "Myriad Pro"
});


Cufon.replace('div.slogan-left-content h1',  {
    fontFamily: "Myriad Pro Light"
});
Muhammed Medeni Baykal
Great! Thank you very much :D
Bodil