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

Thread: font styling effect

  1. #1
    Join Date
    Jul 2009
    Location
    Binus University
    Posts
    472
    Thanks
    78
    Thanked 21 Times in 21 Posts

    Default font styling effect

    is there any js or jquery that help us to style a font,

    For example
    Code:
    .fontdefault{
            font-family:Arial, Helvetica, sans-serif;
    	font-size:11px;
    }
    that's the usual font-family that already include in OS

    what if i use this font:

    Code:
    .fontdswisCNBT{
            font-family:swis 721 cn bt;
    	font-size:11px;
    }
    that font-family (swis 721 cn bt), is not a regular font that we can find, so we need to download it first.

    So how to make other user that don't have that style of font, can still see the same style without downloading the font and install it to their system?

    Thx in advanced....
    _____________________

    David Demetrius // davejob
    _____________________

  2. #2
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

  3. The Following User Says Thank You to azoomer For This Useful Post:

    davelf (06-10-2010)

  4. #3
    Join Date
    Jul 2009
    Location
    Binus University
    Posts
    472
    Thanks
    78
    Thanked 21 Times in 21 Posts

    Default

    yup, i'm using it now, but there's a lot of compress JS, and i want some customization.

    But thx anyway...
    _____________________

    David Demetrius // davejob
    _____________________

  5. #4
    Join Date
    Jul 2008
    Location
    Derbyshire, UK
    Posts
    3,033
    Thanks
    25
    Thanked 599 Times in 575 Posts
    Blog Entries
    40

    Default

    You could also try http://facelift.mawhorter.net/

  6. The Following User Says Thank You to Beverleyh For This Useful Post:

    davelf (06-11-2010)

  7. #5
    Join Date
    Jul 2009
    Location
    Binus University
    Posts
    472
    Thanks
    78
    Thanked 21 Times in 21 Posts

    Default

    thx Beverleyh,

    Another question here, how to make that font look crisp. Like we design in photoshop?
    _____________________

    David Demetrius // davejob
    _____________________

  8. #6
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    Different operating systems render fonts differently. There's VERY little you can do about this. On a PC they look a bit blockier and crisper, and on a mac a little blurry and smoother. That's the basic idea, though just a rough summary. (Basically mac fonts are [more] anti-aliased; PC fonts aren't [generally].) I don't know about linux, but it's irrelevant because there are many other devices out there: mobile phones, for example.

    If you require control over the graphics, you might want to use flash, but that obviously has its own problems (most compatibility, and design/maintenance work).

    And if you need COMPLETE control, you'll need to use images. For a site logo (words, but as a graphic), this is fine. If you are using this for all of the text (paragraphs to be read), then that will be very annoying and slow to load, so I'd recommend strongly against it.
    Last edited by djr33; 06-11-2010 at 09:02 AM. Reason: added info
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  9. The Following User Says Thank You to djr33 For This Useful Post:

    davelf (06-11-2010)

  10. #7
    Join Date
    Jul 2009
    Location
    Binus University
    Posts
    472
    Thanks
    78
    Thanked 21 Times in 21 Posts

    Default

    thx for the advice djr33, i need to mention this to the client.
    _____________________

    David Demetrius // davejob
    _____________________

  11. #8
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    Hi Davelf. Yesterday i came across a post on snook.ca about @font-face embedding. I tried it out and it works in modern browsers. An easy way to implement this technique is to generate and download a kit from fontsqirrel. It's a little bit cumbersome but once in place it works quite well. I think this is what I will be using in the future. Check it out !

  12. The Following User Says Thank You to azoomer For This Useful Post:

    davelf (06-14-2010)

  13. #9
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    Yes, this will help, but it still won't entirely give you control over how the font is rendered: the same shape will be used, but the mac/pc issues mentioned will still be the same (I believe).
    If there is a way around this (I'd like PCs to render like Macs), I'd appreciate an answer for that too.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  14. #10
    Join Date
    Jul 2009
    Location
    Binus University
    Posts
    472
    Thanks
    78
    Thanked 21 Times in 21 Posts

    Default

    thx azommer, after more research, try and error in mac and PC. Like djr33 said, the best way if i want to make that font look crisp and follow the style, i must use the image. I already try any suggestion here, but it still not as perfect as we used image.
    The problem about smooth and sharp font, i can get a smooth font when using image, not with JS..
    _____________________

    David Demetrius // davejob
    _____________________

Bookmarks

Posting Permissions

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