Is there a change in the way Firefox 4 displays fonts from CSS?

This site is coded using standard CSS and had Arial Narrow as first font choice for certain elements. In Firefox 4 / Windows 7 those instances are now defaulting to secondary font - Arial or to the default font Times Roman. EVERY other browser including past Firefox have displayed Arial Narrow properly - assuming the user has it in their system fonts - which is the vast majority of visitors. NEED a fix for this!

This worked for me:
font-family: Arial;
font-stretch: condensed;

Similar Messages

  • Is there a change in the way 10g sees the rowid column.

    i have two databases in my test environment
    1. Oracle 10g on CentOS 5.3
    2. Oracle 9i on Windows Server 2003
    i am practicing simple SQL with the default HR schema created while creating databases using dbca.
    all i am doing is trying to display the employee with the 10th highest salary.
    in Oracle 10g i run the following command:
    SQL> select first_name || ' ' || last_name, salary from employees where
    rowid =
    (select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum <=10
    minus
    select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum < 10);
    FIRST_NAME||''||LAST_NAME                          SALARY
    Lisa Ozer                                           11500when i run the same command in 9i
    select first_name || ' ' || last_name, salary from employees where
    rowid =
    (select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum <=10
    minus
    select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum < 10)
    no rows selectedon digging deeper i found out that in 9i .... when i run the two sub-queries, give the same rowid as output.
    SQL> select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum <=10;
    ROWID
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    10 rows selected.
    SQL> select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum < 10;
    ROWID
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    AAAHM7AAFAAAABXAAI
    9 rows selected.the same two queries in 10g give different rowids (this is correct)
    SQL> select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum <=10;
    ROWID
    AAAMg3AAFAAAABYAAA
    AAAMg3AAFAAAABYAAB
    AAAMg3AAFAAAABYAAC
    AAAMg3AAFAAAABYAAt
    AAAMg3AAFAAAABYAAu
    AAAMg3AAFAAAABUAAD
    AAAMg3AAFAAAABUAAH
    AAAMg3AAFAAAABYAAI
    AAAMg3AAFAAAABYAAv
    AAAMg3AAFAAAABYABE
    10 rows selected.
    SQL> select rowid from (select first_name || ' ' || last_name from employees order by salary desc) where rownum < 10;
    ROWID
    AAAMg3AAFAAAABYAAA
    AAAMg3AAFAAAABYAAB
    AAAMg3AAFAAAABYAAC
    AAAMg3AAFAAAABYAAt
    AAAMg3AAFAAAABYAAu
    AAAMg3AAFAAAABUAAD
    AAAMg3AAFAAAABUAAH
    AAAMg3AAFAAAABYAAI
    AAAMg3AAFAAAABYAAv
    9 rows selected.is there a change in the way Oracle 10g treats rowids from subqueries?
    when i change the query to include the rowid in the innermost sub-query things work as they should in both 10g and 9i
    select first_name || ' ' || last_name, salary from employees where
    rowid =
    (select rowid from (select rowid,first_name || ' ' || last_name from employees order by salary desc) where rownum <=10
    minus
    select rowid from (select rowid,first_name || ' ' || last_name from employees order by salary desc) where rownum < 10)

    OK,
    I didn't seem to have made myself clear. You state
    'the above query uses rownum to filter the top 10 and top 9 salaries and picks the person with the 10th highest salary.'
    As you are using row*id* , and rowids are random strings, and can change during the life of your table, you can not rely on the results of your query.
    Your usage of the rownum pseudo function (as opposed to the rownum analytical function is also incorrect, as rownum is assigned prior to ordering it.
    This
            select * from
             (select rownum rn, ename, sal
              from
              (select ename, sal from scott.emp order by sal desc)
              where rn=10is quite as sufficient, and doesn't use hacks like rowid.
    Sybrand Bakker
    Senior Oracle DBA
    Experts: those who did read documentation.

  • Has Mozilla changed the way Firefox displays @font-face enbeded fonts? The site I'm codeing works in Safari, Chrome, and IE, but Firefox 8.0.1 doesn't display the embeded font.

    Has Mozilla changed the way Firefox displays @font-face enbeded fonts? The site I'm codeing works in Safari, Chrome, and IE, but Firefox 8.0.1 doesn't display the embeded font.

    No problems here with the H1 headers.
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)

  • Are there significant changes in the UI framework between 5.2 and 2007 ?

    Hi,
    As the UI framework got introduced in 5.2 . Are there significant changes to the framework between 5.2 and 2007.
    Therefore could a developer with experience in 5.2 carry out developments within the UI framework for 2007?
    These developments need to be carried out to integrate a third party solution .
    Regards
    Manbir

    Hi Manbir,
    have worked with 5.1 and 5.2 before switching to 6.0.
    I did not notice many changes in the framwork. Most of it still seems to be ICWC anyway.
    - SAP has added some new BAdI's,
    - there seems to be a lot of additional logic regarding webservices
    - there are some new UI gimmicks (Move Assignmentblocks, Configuriation directly in the client, sortable tableviews, etc.)
    - the designlayer (did not notice it before)
    - component enhancements (I believe they were there in 5.2)
    - editable overviewpages, i.e. extensive use of the view_group_context
    So yes, when you have done 5.2 before, you will know your way aroung most things and be better off then 90% of the people starting with 6.0

  • Change the way information is displayed from SQL query in Excel

    Hi,
    I'm trying to set up a spreadsheet that displays information directly from our SQL database using the Microsoft Query Wizard.  I have a very basic understanding on how to do this, so I can create a spreadsheet that gives me most of the information I
    want, but I would like to be able to manipulate the data slightly.
    The main thing I would like to do is be able to make some of the results more user-friendly in the way they're displayed.
    One of the fields is the status of the product (Normal, deleted, discontinued, etc.).  The information is currently displayed as a numeric value between 0-4.
    Is there a way that I can change the display to the user so that they see the actual status in words, "Deleted, Normal, Discontinued" in place of, or next to the numeric value?
    Hope all this makes sense.
    Thanks,
    Scott

    One way is using excel worksheet function CHOOSE.You can add a column after numeric data and put above formula.Pls refer offline help for syntax.
    Another way is .....I suppose ..... in SQL there may be SELECT CASE/SWITCH STATMENT which you can use.
    Best Regards,
    Asadulla Javed, Kolkata
    Please do not forget to click “Vote as Helpful” if any post helps you and
    "Mark as Answer”if it solves the issue.

  • HT4759 i have lost my iphone i dont have iemi number but i used icloud id on that as there any way to locate my phone and if not located the plz tell my the way i remove my data from it. thanks

    i have lost my iphone i dont have iemi number but i used icloud id on that as there any way to locate my phone and if not located the plz tell my the way i remove my data from it. thanks

    Go to icloud.com.  Log in with your Apple ID & Password.  Go to the Find My iPhone section.  Perform a remote wipe of the device.
    You don't have to have downloaded any app.  You only have to have enabled the Find My iPhone option under Settings > iCloud.  If you did not do that, then you cannot remotely access the device.
    If that's the case, then change ALL of your account passwords; email, banking, etc.  All of them.  And then monitor those accounts very closely!

  • [svn] 4005: Change in the way item renderers lay them selves out.

    Revision: 4005
    Author: [email protected]
    Date: 2008-11-03 17:07:38 -0800 (Mon, 03 Nov 2008)
    Log Message:
    Change in the way item renderers lay them selves out. Before we were using 100% width and 100% height. Now, we're using horizontalAlign and verticalAlign to accomplish this, which are properties added to VerticalLayout and HorizontalLayout, respectively. horizontalAlign takes values "left", "center", "right", "justify", and "contentJustify". "justify" sizes all elements to the width of the component. "contentJustify" sizes all elements to the size of the largest child (with a minimum of the width of the parent component). Similar, verticalAlign takes "top", "middle", "bottom", "justify", and "contentJustify".
    The default List skin sets the VerticalLayout's horizontalAlign to "contentJustify." Most lists should use "contentJustify" or "justify" if you don't want scrollbars. If you want to change your list to a horizontal list, you change the layout to a horizontal layout. However, you must set the verticalAlign property on the horizontal layout correctly--otherwise it'll default to "top" and probably won't do what you want.
    Ran checkintests and the following mustella tests: layout, list, Group, DataGroup, FxDataContainer, and FxContainer. Some DataGroup tests were failing but should be because of an unrelated, local change. All other tests are passing.
    QE Notes: Failing tests are excluded. Please update them (I think all just need to add verticalAlign="contentJustify" in the horizontal layout case) and re-include them. Also, please write tests for this new functionality.
    Doc Notes: None
    Bugs: SDK-17198
    Reviewer: Evtim
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17198
    Modified Paths:
    flex/sdk/trunk/development/eclipse/flex/flex4test/src/flex4test.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/ItemRenderer.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/HorizontalLayout.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/LayoutBase.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/VerticalLayout.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxDataContainerSkin.mxml
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/skins/spark/FxListSkin.mxml
    Added Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/HorizontalAlign.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/VerticalAlign.as

    Hi! The only way I know of is changing the screen resolution. Tom

  • Is there a change in the blur function?

    I'v noticed a change in the way blur works in Aperture.  It doesn't blur as much.  In fact, it whitens more than in blurs.  Has anyone else noticed this as well?

    Nevermind, I didn't adjust the "strength" of the brush high enough.

  • After the most recent iPhoto update, I keep getting the following error: "iPhoto quit unexpectedly while using the Sonix SN9c201 webcam plugin."  This seems to happen after *every* iPhoto update.  Is there a fix on the way?

    After the most recent iPhoto update, I keep getting the following error: "iPhoto quit unexpectedly while using the Sonix SN9c201 webcam plugin."  This seems to happen after *every* iPhoto update.  Is there a fix on the way?

    As you can see below, when I right click, I have no such option.  In the User Account Settings, I'm operating as the "System Administrator".
    Any other suggestions?

  • HT6058 Is there any change in the MODERN FIRMWARE??

    Is there any change in the MODERN FIRMWARE with the new ios update of 7.0.4?

    The entire point of an update is to make changes in the current firmware.
    So, yes there are changes.  That is what an update is.

  • My ipad (3rd generation) charger suddenly stopped working? I live in Singapore so there isn't an official apple store. Does anyone know where I can get it(charger) fixed/replaced? By the way, I got my ipad from the online store. Please and thank you

    My ipad (3rd generation) charger suddenly stopped working? I live in Singapore so there isn't an official apple store. Does anyone know where I can get it(charger) fixed/replaced? By the way, I got my ipad from the online store. Please and thank you

    Currently there are 15 Apple Premiun Reseller in Singapore; you can find your nearest reseller here:
    http://www.apple.com/sg/reseller/searchtips.php?location=

  • How to change the default window size display font size on Lync 2013 main window?

    Hi champs,
    Just a simple non-technical question: How to change the default window size display font size on Lync 2013 main window on Windows 7 desktop?
    Thanks,

    Hi,
    Did you mean change the Lync: Change the Default Font and Color of Instant Messages just as Edwin said above?
    If not, as I know, there is no natural way to change it.
    If yes, on the latest version of Lync 2013 client, there is a new option “IM” on Lync client “Options” list. And you need to change the default Font and Color of IM in the interface of “IM”.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • When I click on a link in an email I get the following message at the top of the screen: "Firefox prevented this page from automatically redirecting to another page...[Allow]. How can I stop this?

    When I click on a link in an email using gmail in the Mozilla brower, I get the following message at the top of the screen:
    "Firefox prevented this page from automatically redirecting to another page...[Allow].
    How can I stop this?

    # Press Alt+T
    # Select Options
    # Select Advanced Panel
    # Select General Tab
    # You will see option "Warn me when websites try to redirect or reload page"
    # Uncheck it as given in the screenshot.
    <img src=http://dl.dropbox.com/u/7456129/Firefox/advancedgeneraltab.jpg width=600px height=600px>
    ''<hr>Note: If anyone's reply has solved your problem, then please mark that reply as "Solved It" to the right of that reply after logging in your account. It will help us to concentrate on new questions.''

  • I cannot find a way to sort the bookmark folders themselves alphabetically by name.I am not talking about in a view mode but in the way they are displayed when I click on my bookmarks tab. Can someone explain to me how to accomplish this.

    I have a lot of various book mark folders with websites contained within each folder. I am able to sort the websites within each folder alphabetically by name but I cannot find a way to sort the bookmark folders themselves alphabetically by name.I am not talking about in a view mode but in the way they are displayed when I click on my bookmarks tab. Can someone explain to me how to accomplish this other than manually dragging them as this is extremely hard for me due to the fact that I am a quadriplegic with limited hand movement dexterity

    Bookmark folders that you created are in the Bookmarks Menu folder. "Sort" that folder.
    http://kb.mozillazine.org/Sorting_bookmarks_alphabetically

  • How do I make Foxfire quit giving me the message Firefox prevented this page from automatically redirecting to another page?

    When I am on some sites Firefox gives me the message Firefox prevented this page from automatically redirecting to another page? and then I have to click Allow. This happens on every single page on certain sites. How can I make this stop all together?

    * [http://kb.mozillazine.org/Menu_differences Firefox > Preferences] > Advanced > General : Accessibility : [ ] "Warn me when web sites try to redirect or reload the page"

Maybe you are looking for