Talk:CSS Tips and Tricks

From Facebook Developer Wiki

Revision as of 16:08, 8 September 2009 by Alessio Cecchin (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search

I understand style sheets. Here's what I want to do: I want to use a special font on my page. It has LIGATURES. Ligatures are glued-together letters like ff, fi, fl, ffl, ffi that some fonts make. Internet Explorer is not capable of showing ligatures, but Firefox 3.0, Safari and other browsers on Mac show them.

The font I want to use is a font that transforms a romanized script back to its native script by way of using the ligature idea.

Firefox has the ligature mode turned off, but there is a special CSS directive used to turn it on: text-rendering: optimizeLegibility;

Essentially, I'd like this for the BODY tag: <body style="text-rendering: optimizeLegibility;">

And then for paragraphs something like this: <p style="font-family: MyFont, 'lucida grande', tahoma, verdana, arial, sans-serif;">.

Is this possible? --1231397432 15:24, 21 March 2009 (PDT)

I'm just moving my first steps around fb's apps. I start with footprints and I try to modify it adding, for example, a custom css.

Everything is fine if I use php, but if I use fb:ref I have the following error:

Errors while loading page from application
Parse errors:
CSS Error (line 166 char 2): Selector expected.  Ruleset ignored due to bad selector.

Is it possible to enable a 'debug mode' to see more info about the error? Is it possible to see an fn:ref example that load an external css correctly?

Thanks. --1257646369 09:08, 8 September 2009 (PDT)

reference