Page 1 of 2 12 LastLast
Results 1 to 10 of 20

Thread: Fonts

  1. #1
    Senior Member Tony Hardy's Avatar
    Join Date
    Dec 2010
    Location
    Newcastle, England
    Posts
    763
    Thanks
    2
    Thanked 19 Times in 16 Posts

    Fonts

    Hey everyone,

    I need to display the font Futura on the header of a webpage, I have the CSS knowledge of how to make it display, but, that's for a Mac, as it comes as standard.

    I know there's been advancements in the field on how to make it dispay in Windows too, how's it done? This is what I've got at the minute;

    .nav_container.horizontal { /* Enabled via Display Options */
    font-family: Futura, Verdana, Arial, sans-serif;
    font-size:;
    left: auto;
    padding: 0 0 0 0;
    position: relative;
    top: -55px;
    right: -690px;
    width: 500px;
    z-index: 1;
    }

  2. #2
    Senior Member sthomas's Avatar
    Join Date
    Sep 2010
    Location
    Tunbridge Wells, Kent
    Posts
    275
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Hi Tony,

    I don't think your method would work as it depends on the end user having a copy of Futura installed on their PC.

    The way I would go about this is using a web font embedding method: Review of Popular Web Font Embedding Services - Smashing Magazine

    Hope that helps
    Designmatic Ltd | Web Design | Web Development | Graphic Design
    Web Design Kent Graphic Design Kent | Like on Facebook | Follow on Twitter

  3. #3
    Senior Member Tony Hardy's Avatar
    Join Date
    Dec 2010
    Location
    Newcastle, England
    Posts
    763
    Thanks
    2
    Thanked 19 Times in 16 Posts
    Hey sthomas,

    Cheers for that. Futura works for Mac users, apparently it's about 90% safe. Not really sure though. I think it looks fine when it's not Futura too, but I'll have a look at that.

    Cheers,
    Tony

  4. #4
    Senior Member Tony Hardy's Avatar
    Join Date
    Dec 2010
    Location
    Newcastle, England
    Posts
    763
    Thanks
    2
    Thanked 19 Times in 16 Posts
    Well I've got this;

    @font-face {
    font-family: "Futura Std";
    src: local("☺"),
    url("http://typefront.com/fonts/825589673.ttf") format("truetype");
    }

    And then, put Futura Std as my font family but it's not working :(

  5. #5
    Moderator Corrosive's Avatar
    Join Date
    May 2010
    Location
    Bristol, UK
    Posts
    980
    Thanks
    18
    Thanked 27 Times in 20 Posts
    Don't leave it to 90% chance... Font Squirrel | Create Your Own @font-face Kits

  6. #6
    Senior Member Tony Hardy's Avatar
    Join Date
    Dec 2010
    Location
    Newcastle, England
    Posts
    763
    Thanks
    2
    Thanked 19 Times in 16 Posts
    Code:
    @font-face{ 
        font-family: 'Futura';
        src: url('futurastd-heavy-webfont.eot');
        src: url('futurastd-heavy-webfont.eot?#iefix') format('embedded-opentype'),
             url('futurastd-heavy-webfont.woff') format('woff'),
             url('WebFont.ttf') format('truetype'),
             url('futurastd-heavy-webfont.svg#webfont') format('svg');
    }
       
    <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" />
    That's now what I've got in the CSS and HTML respectively. No cigar. :(

  7. #7
    Moderator Corrosive's Avatar
    Join Date
    May 2010
    Location
    Bristol, UK
    Posts
    980
    Thanks
    18
    Thanked 27 Times in 20 Posts
    You've uploaded the font files (.ttf, .woff etc) and checked the paths in the CSS right?

  8. #8
    Senior Member Tony Hardy's Avatar
    Join Date
    Dec 2010
    Location
    Newcastle, England
    Posts
    763
    Thanks
    2
    Thanked 19 Times in 16 Posts
    Yeah, I've uploaded the font files, and the paths all seem to be correct.
    One thing I'm thinking is that because it's Cargo, it won't allow me access to different directories.

    So testpage.com/css/stylesheet.css

    Won't actually let me there, it gives me a 404 error, but, that's where it's located.

  9. #9
    Moderator Corrosive's Avatar
    Join Date
    May 2010
    Location
    Bristol, UK
    Posts
    980
    Thanks
    18
    Thanked 27 Times in 20 Posts
    Well if you can't access it then I'd guess that anyone or any browser would also struggle to access it as well. It isn't going to work if any of the files are not accessible. WTF is 'Cargo' btw?

  10. #10
    Senior Member Tony Hardy's Avatar
    Join Date
    Dec 2010
    Location
    Newcastle, England
    Posts
    763
    Thanks
    2
    Thanked 19 Times in 16 Posts
    It's this; Cargo
    A bit of a tricky bugger of a system, all CSS/HTML editing has to be done on screen and through flicking through certain tabs.

    Think I'm just going to go with images for the links.

Page 1 of 2 12 LastLast

Similar Threads

  1. Fonts that have 0 KB value
    By Lord Anchovy in forum Font Forum:
    Replies: 8
    Last Post: 03-16-2012, 12:31 PM
  2. What are these fonts?
    By wczorajdzonson in forum Font Forum:
    Replies: 1
    Last Post: 10-02-2011, 11:17 PM
  3. Name of three fonts!
    By D3ft0ne in forum Font Forum:
    Replies: 0
    Last Post: 07-10-2011, 11:11 AM
  4. Too Many Fonts!
    By CTL Designs in forum Font Forum:
    Replies: 11
    Last Post: 03-10-2011, 05:15 PM
  5. Fonts with history..
    By Offelias in forum Font Forum:
    Replies: 3
    Last Post: 02-22-2011, 01:22 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •