Font management from the server-side

Ask a Question related to Coldfusion Server Administration, Design and Development.

  1. #1

    Default Font management from the server-side

    In the process of creating Breacrumbs for our website redesign, the Graphics
    Designer would like to use a special fonts. We already know that this font will
    not be installed on most of user client-side. She though about creating
    graphics to represents the navigation (breadcrumbs) but I ask myself if we can
    use the Font Management from the Coldfusion Administrator. I have no experience
    with this feature and have not find interesting information about it from the
    web.

    Is it possible to use a font installed on the server-side through CSS so the
    client/web-user will see the text with that font?

    francois-yanick Guest

  2. Similar Questions and Discussions

    1. Font Management Software
      Does anyone know of a great font management software package? I have over 2,000 fonts and Font Book isn't cutting it. Thanks*
    2. server side Tiff management
      Dear all, I hit a problem about the Tiff management. I have several Tiff files located at the server and I have to split and merge some of the...
    3. Controls with a client side onLoad function or seting a cursor server side
      Is there any way to create a web control that calls a client side onLoad function? Its diffucilt since you are not able to access the form or...
    4. FreeHand MX and Mac Font Management
      Don't look to Mac OSX as a solution. Fonts are a nightmare since Adobe is not making ATM for OSX. Fonts that were usable in System 9 are corrupt in...
    5. font management
      For those of you using FHMX and OSX, what do you use for font management (ATM Deluxe, Suitcase, etc.)? How well does it work with Freehand? If you...
  3. #2

    Default Re: Font management from the server-side

    This is not possible. You will have to get the users to install the fonts on
    their machines or display graphics instead of text.

    The BEST way to do this is to gently encourage the user to download the font
    but to degrade gracefully into similar standard fonts.

    E.G.
    body
    {
    font-family: "My Bitchen Blinky font","Trebuchet
    MS",Verdana,Geneva,Tahoma,Sans-Serif;
    }


    MikerRoo Guest

  4. #3

    Default Re: Font management from the server-side

    You could use WEFT, but it is still limited to certain browsers.
    [url]http://www.microsoft.com/typography/web/embedding/weft3/[/url]

    Bitstream has something to , but again, is limited
    [url]http://bitstream.com/[/url]

    Abinidi Guest

  5. #4

    Smile Re: Font management from the server-side

    Look into SIRF.... it's a technology that combines the use of Javascript and Flash into presenting the user with a desire font and they do not have to install the font in their machine. If the browser is not javascript compatible, which 99% of websites wouldn't work anyways, then you will see regular text.
    Unregistered Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139