Using an Adobe font in a project skin

Special forum to share and discuss skins for Pano2VR and Object2VR
Post Reply
panovrlover
Posts: 157
Joined: Thu Sep 17, 2009 7:39 pm

As the title explains, i'm looking to use an adobe font in a project skin. I have Adobe Creative Cloud and the output it gives me is as follows -

font-family: darkmode-on, sans-serif;
font-weight: 400;
font-style: normal;

It also gives me an URL like the following -

<link rel="stylesheet" href="https://use.typekit.net/codehere.css">

Could someone explain how I can build this into the skin? I am used to using Google fonts, but can't work out how to get the above Adobe method to work.

Thanks.
User avatar
k.ary.n
Gnome
Posts: 615
Joined: Wed Aug 15, 2007 1:02 pm

It seems you need to add the import link no matter what.

Code: Select all

@import url("https://use.typekit.net/xxxxxxx.css");
to the CSS stylesheet. Or add

Code: Select all

<link rel="stylesheet" href="https://use.typekit.net/codehere.css">
to the head of the HTML file.

I'm not sure what you've tried already, but maybe try using the embedded stylesheet that is explained here, but also include the import tag as described by Adobe here.
panovrlover
Posts: 157
Joined: Thu Sep 17, 2009 7:39 pm

Thanks Karyn, amazing support as always, i've used the tips you provided and it worked perfectly.
Post Reply