Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • TomC Moderator
    #157693

    USING @FontFace for Non-Traditional/Alternative Fonts On Your Site

    I have to give a shout out to Moderator scotty for pointing me in the direction of @FontFace as an alternative to using the cufon method of using alternative fonts.

    I am very excited about this method because I was having the damndest time trying to use the
    “cufon” method to use a particular font for my main navigation. It DID replace the main nav font, but it also affected the sub-nav menu items in a way I did not want – and I couldn’t figure out how to circumvent the issue . . . UNTIL scotty pointed me in the direction of the @FontFace method.

    The method is actually VERY simple (so long as you get all the syntax correct in your css code).

    Here are a couple of links to explain the process . . .

    http://nicewebtype.com/notes/2009/10/30/how-to-use-css-font-face/

    http://www.miltonbayer.com/font-face/

    http://sixrevisions.com/css/font-face-guide/


    FOR A PRACTICAL EXAMPLE OF HOW I USED IT in my JA TEMPLATE . . .

    First I utilized FontSquirrel’s @FontFace Generator (http://www.fontsquirrel.com/) to generate the @FontFace font files I would need – in my case, “League Gothic” I then created a “fonts” folder (within my template css folder) and uploaded the font files there.

    the structure looks like this . . .

    your template
    —- css
    ——- fonts

    I then inserted the @fontface css code into (in my case) my mega.css file and designated the font for the particular div/class I wanted it to appear, as follows . . .


    /* STYLING THE MENU
    -----------------------------------*/
    /* 1st level */
    @font-face {
    font-family: 'League Gothic';
    src: url("../../css/fonts/League_Gothic.eot") format('eot');
    src: local("☺"),
    url("../../css/fonts/League_Gothic.otf"),
    url("../../css/fonts/League_Gothic-webfont.wof") format('woff'),
    url("../../css/fonts/League_Gothic-webfont.ttf") format('truetype'),
    url("../../css/fonts/League_Gothic-webfont.svg#webfontpm5EArBj") format('svg');
    font-weight: bold;
    font-style: normal;
    }

    #ja-mainnav ul.level0 li a {
    display: block;
    text-decoration: none;
    font-size: 30px;
    color: #000;
    font-weight: 500;
    padding-top: 16px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-left: 0px;
    height: 37px;
    text-transform: uppercase;
    font-family: League Gothic, Helvetica, Arial, sans-serif;
    }

    You need to make sure you designate the correct path to the fonts (within the fonts folder you created).
    I found out, though some trial-and-error” that precise syntax is key.

    But WHALLA, IT WORKS as it should and now you can use non-traditional/alternative fonts for various parts of your site.

    Hope this has been of some use and benefit for you.

    🙂

    TOM

    TomC Moderator
    #370499

    With more and more “alternative / non-traditional web fonts” being used in templates these days, I’m thinking more of you may want to know about this very easy method to utilize most any font you want . . . . so, BUMP.

    🙂

    thatcomputerdude Friend
    #380936

    I’m having no luck getting this to work with Internet Explorer and basically did exactly what you did.. Have you run into any problems with the font not showing up in Internet Explorer?

    Works fine with FF, Safari and Chrome.

    thatcomputerdude Friend
    #380941

    I figured it out – I had to tweak a line of code for IE, here is my new @font-face code


    @font-face {
    font-family: 'BebasRegular';
    src: url('../../css/fonts/BEBAS___-webfont.eot');
    src: url('../../css/fonts/BEBAS___-webfont.eot?iefix') format('eot'),
    url('../../css/fonts/BEBAS___-webfont.woff') format('woff'),
    url('../../css/fonts/BEBAS___-webfont.ttf') format('truetype'),
    url('../../css/fonts/BEBAS___-webfont.svg#webfontSRj8j0PE') format('svg');
    font-weight: normal;
    font-style: normal;

    }

    irfandi Friend
    #430689

    the fontsquirrel.com doesn’t work…


    1. 12
    TomC Moderator
    #430748

    <em>@irfandi 290491 wrote:</em><blockquote>
    the fontsquirrel.com doesn’t work…</blockquote>
    I am guessing this is an issue related to your particular browser configurations.
    I just brought up the site no problem.

    dieudonne Friend
    #482520

    Thanks.

    And can you provide a little tuto : “how to work with font in .less file ?”
    It’ll be great.

    Saguaros Moderator
    #482646

    Hi,

    Please make your concern about font in Less clearer, how you want to achieve. Here is good reference to know about Less & Bootstrap:

    http://twitter.github.com/bootstrap/base-css.html

    http://lesscss.org/

Viewing 8 posts - 1 through 8 (of 8 total)

This topic contains 8 replies, has 5 voices, and was last updated by  Saguaros 11 years, 2 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum