Typekit support?
scouten
Registered Users Posts: 3 Beginner grinner
Since the rest of my site (not hosted on SmugMug) uses Proxima Nova*, I'd like to do the same on my SmugMug site (which is otherwise shaping up very nicely). I can't seem to find a way to enable that. When I insert custom HTML, the script tags get stripped.
I'd rather use the "real" Proxima Nova rather than the rather clumsy clones of it that are available in the Google Fonts library.
Thanks.
* Yes, I know. Me and everybody else on the planet. What can I say? I like the font.
I'd rather use the "real" Proxima Nova rather than the rather clumsy clones of it that are available in the Google Fonts library.
Thanks.
* Yes, I know. Me and everybody else on the planet. What can I say? I like the font.
0
Comments
Thanks,
Jane
I use the '@font-face' on my site and it works fine. You might want to read this on how to do it: http://www.dgrin.com/showpost.php?p=1909740&postcount=16
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
@font-face {
font-family: 'franklin_gothic_demi_condRg';
src: url('http://www.cmewebsites.com/template_dwt/fonts/14359-webfont.eot');
src: url('http://www.cmewebsites.com/template_dwt/fonts/14359-webfont.eot?#iefix') format('embedded-opentype');
url('http://www.cmewebsites.com/template_dwt/fonts/14359-webfont.woff') format('woff'),
url('http://www.cmewebsites.com/template_dwt/fonts/14359-webfont.ttf') format('truetype'),
url('http://www.cmewebsites.com/template_dwt/fonts/14359-webfont.svg#franklin_gothic_demi_condRg') format('svg'),
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'muliregular';
src: url('http://www.thebackcountry.org/fonts/muli-regular-webfont.eot');
src: url('http://www.thebackcountry.org/fonts/muli-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('http://www.thebackcountry.org/fonts/muli-regular-webfont.woff') format('woff'),
url('http://www.thebackcountry.org/fonts/muli-regular-webfont.ttf') format('truetype'),
url('http://www.thebackcountry.org/fonts/muli-regular-webfont.svg#muliregular') format('svg');
font-weight: normal;
font-style: normal;
}
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
The code for the menu is a lot more complex than it should be. We were copying a responsive menu in from our site, but gave up trying to get the complex responsive dropdown to work. I'm going to spend some time tomorrow simplifying it to see if that will help.
I'm also going to remake the font kit on the off chance there's an odd corruption. I don't think so - again because it works on my site with the exact same font kit!
I was reading about cross-domain fontkit issues on IE and FF. I don't know if that could be related or not. Yours would do the same cross-domain stuff mine is doing and it works for you.
If you got it to work on your site, there's no reason I can't get it to work here.
I really appreciate your help.
Thanks,
Jane
My site works, but maybe because I have the fonts loaded on my computer. Going to have to check for sure.
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
I spent more time researching it and I bet it's got more to do with FF and IE not accepting cross-domain @font-face files - sounds like this is an issue for a lot of people (like those using Amazon, Tumbler, CDNs). We settled for a similar google font.
Thank you for all you help!