On windows 7 only, ie9 and firefox 4 spry bar not displaying correctly?

This website www.colonialstock.com does not display the spry menubar correctly.  I need it to go all the way to the right.  But when I do a view on IE8 or do the compatibility view on IE9 (which is the same as IE8) it brings the bar too far, making it fall below where it is.  I need it to work on both browsers.  The same is on firefox 4 and earlier versions.  I am guessing this is just a windows 7 issue in all.  Also on firefox when i hover on this tab issuer services> annual meeting & proxy the sub sub menu appears farther down than it should it works fine on all ie8/9 versions.  Please let me know if you have any solutions.

See here http://forums.adobe.com/message/4002145#4002145
Gramps

Similar Messages

  • Abstract classes and methods with dollar.decimal not displaying correctly

    Hi, I'm working on a homework assignment and need a little help. I have two classes, 1 abstract class, 1 extends class and 1 program file. When I run the program file, it executes properly, but the stored values are not displaying correctly. I'm trying to get them to display in the dollar format, but it's leaving off the last 0. Can someone please offer some assistance. Here's what I did.
    File 1
    public abstract class Customer//Using the abstract class for the customer info
    private String name;//customer name
    private String acctNo;//customer account number
    private int branchNumber;//The bank branch number
    //The constructor accepts as arguments the name, acctNo, and branchNumber
    public Customer(String n, String acct, int b)
        name = n;
        acctNo = acct;
        branchNumber = b;
    //toString method
    public String toString()
    String str;
        str = "Name: " + name + "\nAccount Number: " + acctNo + "\nBranch Number: " + branchNumber;
        return str;
    //Using the abstract method for the getCurrentBalance class
    public abstract double getCurrentBalance();
    }file 2
    public class AccountTrans extends Customer //
        private final double
        MONTHLY_DEPOSITS = 100,
        COMPANY_MATCH = 10,
        MONTHLY_INTEREST = 1;
        private double monthlyDeposit,
        coMatch,
        monthlyInt;
        //The constructor accepts as arguments the name, acctNo, and branchNumber
        public AccountTrans(String n, String acct, int b)
            super(n, acct, b);
        //The setMonthlyDeposit accepts the value for the monthly deposit amount
        public void setMonthlyDeposit(double deposit)
            monthlyDeposit = deposit;
        //The setCompanyMatch accepts the value for the monthly company match amount
        public void setCompanyMatch(double match)
            coMatch = match;
        //The setMonthlyInterest accepts the value for the monthly interest amount
        public void setMonthlyInterest(double interest)
            monthlyInt = interest;
        //toString method
        public String toString()
            String str;
            str = super.toString() +
            "\nAccount Type: Hybrid Retirement" +
            "\nDeposits: $" + monthlyDeposit +
            "\nCompany Match: $" + coMatch +
            "\nInterest: $" + monthlyInt;
            return str;
        //Using the getter method for the customer.java fields
        public double getCurrentBalance()
            double currentBalance;
            currentBalance = (monthlyDeposit + coMatch + monthlyInt) * (2);
            return currentBalance;
    }File 3
        public static void main(String[] args)
    //Creates the AccountTrans object       
            AccountTrans acctTrans = new AccountTrans("Jane Smith", "A123ZW", 435);
            //Created to store the values for the MonthlyDeposit,
            //CompanyMatch, MonthlyInterest
            acctTrans.setMonthlyDeposit(100);
            acctTrans.setCompanyMatch(10);
            acctTrans.setMonthlyInterest(5);
            DecimalFormat dollar = new DecimalFormat("#,##0.00");
            //This will display the customer's data
            System.out.println(acctTrans);
            //This will display the current balance times 2 since the current
            //month is February.
            System.out.println("Your current balance is $"
                    + dollar.format(acctTrans.getCurrentBalance()));
        }

    Get a hair cut!
    h1. The Ubiquitous Newbie Tips
    * DON'T SHOUT!!!
    * Homework dumps will be flamed mercilessly. [Feelin' lucky, punk? Well, do ya'?|http://www.youtube.com/watch?v=1-0BVT4cqGY]
    * Have a quick scan through the [Forum FAQ's|http://wikis.sun.com/display/SunForums/Forums.sun.com+FAQ].
    h5. Ask a good question
    * Don't forget to actually ask a question. No, The subject line doesn't count.
    * Don't even talk to me until you've:
        (a) [googled it|http://www.google.com.au/] and
        (b) had a squizzy at the [Java Cheat Sheet|http://mindprod.com/jgloss/jcheat.html] and
        (c) looked it up in [Sun's Java Tutorials|http://java.sun.com/docs/books/tutorial/] and
        (d) read the relevant section of the [API Docs|http://java.sun.com/javase/6/docs/api/index-files/index-1.html] and maybe even
        (e) referred to the JLS for "advanced" questions.
    * [Good questions|http://www.catb.org/~esr/faqs/smart-questions.html#intro] get better Answers. It's a fact. Trust me on this one.
        - Lots of regulars on these forums simply don't read badly written questions. It's just too frustrating.
          - FFS spare us the SMS and L33t speak! Pull your pants up, and get a hair cut!
        - Often you discover your own mistake whilst forming a "Good question".
        - Often you discover that you where trying to answer "[the wrong question|http://blog.aisleten.com/2008/11/20/youre-asking-the-wrong-question/]".
        - Many of the regulars on these forums will bend over backwards to help with a "Good question",
          especially to a nuggetty problem, because they're interested in the answer.
    * Improve your chances of getting laid tonight by writing an SSCCE
        - For you normal people, That's a: Short Self-Contained Compilable (Correct) Example.
        - Short is sweet: No-one wants to wade through 5000 lines to find your syntax errors!
        - Often you discover your own mistake whilst writing an SSCCE.
        - Often you solve your own problem whilst preparing the SSCCE.
        - Solving your own problem yields a sense of accomplishment, which makes you smarter ;-)
    h5. Formatting Matters
    * Post your code between a pair of {code} tags
        - That is: {code} ... your code goes here ... {code}
        - This makes your code easier to read by preserving whitespace and highlighting java syntax.
        - Copy&paste your source code directly from your editor. The forum editor basically sucks.
        - The forums tabwidth is 8, as per [the java coding conventions|http://java.sun.com/docs/codeconv/].
          - Indents will go jagged if your tabwidth!=8 and you've mixed tabs and spaces.
          - Indentation is essential to following program code.
          - Long lines (say > 132 chars) should be wrapped.
    * Post your error messages between a pair of {code} tags:
        - That is: {code} ... errors here ... {code}
        - OR: [pre]{noformat} ... errors here ... {noformat}[/pre]
        - To make it easier for us to find, Mark the erroneous line(s) in your source-code. For example:
            System.out.println("Your momma!); // <<<< ERROR 1
        - Note that error messages are rendered basically useless if the code has been
          modified AT ALL since the error message was produced.
        - Here's [How to read a stacktrace|http://www.0xcafefeed.com/2004/06/of-thread-dumps-and-stack-traces/].
    * The forum editor has a "Preview" pane. Use it.
        - If you're new around here you'll probably find the "Rich Text" view is easier to use.
        - WARNING: Swapping from "Plain Text" view to "Rich Text" scrambles the markup!
        - To see how a posted "special effect" is done, click reply then click the quote button.
    If you (the newbie) have covered these bases *you deserve, and can therefore expect, GOOD answers!*
    h1. The pledge!
    We the New To Java regulars do hereby pledge to refrain from flaming anybody, no matter how gumbyish the question, if the OP has demonstrably tried to cover these bases. The rest are fair game.

  • When i open the add ons page in firefox the pages do not display correctly the pages only show text and are in lists

    when i click on the add ons tab the page does not show correctly. There are no graphics just text. It is difficult to view the page details. If you click on a link within the page the next page opens with exactly the same problem. All other tabs and pages open and display correctly

    Hi,
    If you're using a theme you can try to temporarily switch to the '''Default''' theme in Tools > Add-ons > Appearance. If the problem persists, please check if this happens in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]. Safe mode disables the installed '''Extensions''', and themes ('''Appearance''') in '''Tools''' ('''Alt''' + '''T''') > '''Add-ons'''. Hardware acceleration is also temporarily disabled - the manual setting is '''Tools''' > '''Options''' > '''Advanced''' > '''General''' > [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Advanced%20panel?as=u '''Use hardware acceleration when available''']. All these settings/options/add-ons can also be individually or collectively disabled/enabled/changed in Firefox normal mode to check if an extension, theme, option or hardware acceleration is causing issues. Disabling/enabling hardware acceleration, and some types of add-ons in normal mode may require a Firefox restart.
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.org/en-US/kb/Options%20window Options]

  • Firefox 4.1 and Firefox 11.1 do not work correctly on my systems

    <pre><nowiki>From : <[email protected]>
    To : support.mozilla.com
    Subject : Firefox Version 11.1 Does Not Work for Me
    Date : Sat, 24 Mar 2012 18:45:39 GMT
    Spell Check in your version 11.1 is just as impeding in my three systems as was 4.1.
    (Note the string below.) I have returned to 3.6.28, and will refuse to upgrade your
    program in the future until Mozilla can demonstrate that the newer versions will not
    impede when the user attempts to spell check in email.
    Thank you.
    [email protected]
    From : [email protected]
    To : [email protected]
    Subject: Please confirm your email address
    Date: Fri, May 06, 2011 11:21 AM
    Welcome to support.mozilla.com.
    Before you can use your new account you must activate it -
    this ensures the e-mail address you used is valid and belongs
    to you. To activate your account, click the link below or
    copy and paste the whole thing into your browser's location bar:
    https://support.mozilla.com/en-US/users/activate/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    Once you've successfully activated your account, you can throw
    away this e-mail.
    Thanks!
    The support.mozilla.com team
    Downloading the new Version 4 stripped out my dictionary, so none of my email send.
    What's
    up with that?
    You can see which dictionary is selected if you right-click in a text area and open the
    Languages submenu.
    You can open the "Add Dictionaries" link to install a dictionary if you do not
    have one.
    Make sure that [X] "Check Spelling" in the right-click context menu has a tick.
    You can enable or disable spell checking globally:
    Firefox > Preferences > Advanced : General: Browsing: "Check my spelling
    as I type"
    See also:
    http://kb.mozillazine.org/Spell_checking
    KingGhidorah 1 solutions 1 answers
    1 month ago
    https://addons.mozilla.org/en-US/firefox/addon/united-states-english-spellche/
    Added this and it works (again) like a charm.
    From : [email protected]
    To : [email protected]
    Subject: Solution found to Firefox Help question
    Date: Fri, May 06, 2011 12:27 PM
    Hi mjattie,
    We just wanted to let you know that KingGhidorah
    has found a solution to a Firefox question that you're following.
    The question:
    Spell checker not working since FF 4 was marked as solved by its asker, djf42.
    You can view the solution using the link below.
    Did this answer also help you? Did you find another post more
    helpful?
    mjattie: No!!
    Let other Firefox users know by voting next to the answer.
    https://support.mozilla.com/questions/800727#answer-162639
    Unsubscribe from these emails:
    https://support.mozilla.com/unsubscribe/385490?s=xxxxxxxxxx
    mjattie: Nope! Still does not work. I am running XP Might that be the problem?
    djf42: Sorry my suggestion hasn't worked for you. Not being a computer wizz can't help
    you further.
    Perhaps the back room boys at FF can step in and help, I'm sure that they wouldn't want
    you to go backwards in the versions.
    mjattie: I was perfectly happy with 3.6.17 (all of the 3s by the way.) How do I get in
    touch with the back room boys at FF?
    From : [email protected]
    To : [email protected]
    Subject: Reply: Solution found to Firefox Help question
    Date: Sat, May 07, 2011 11:47 PM
    Date: Sun, 8 May 2011 06:46:44 GMT
    From : [email protected]
    To : [email protected]
    Subject: Re: Reply: Solution found to Firefox Help question
    Date: Sun, May 08, 2011 11:51 AM
    Hi, djf42. I have found the 3.6.17 installer, have reinstalled it, and I am now
    perfectly happy.
    One of these days, Mozilla will come out with 4.02 with this problem fixed (hopefully).
    I will
    then give it a try. Thanks for your help.</nowiki></pre>

    This problem occurs on the Juno webmail site?
    I assume you are doing something different than just correcting the squiggly red underlined words. How are you spell-checking the email: using an add-on or using a feature of the Juno webmail site? If it's an add-on, which one is it?

  • Firefox 3.0 osx not displaying correctly

    Why does the site I am working on render correctly in most browsers except for firefox 3.0 osx? I tryed editing the main contents left margin to allow the sidebar1 to drop down but no luck. The site link, http://www.thepenrecording.com The code needs some cleaning up yet so please pardon the mess.

    It appears you have some<p> tags out of place.
    <p><img src="Images/mix_board2.gif" width="161" height="123" />
        <p> Recording locations: Trevose &amp; Southampton, Pa.
          <!-- end #sidebar1 -->
        </p>
      </p>
    While closing </p> tags are optional, crossing them would seem to me to throw things out of kilter,
    Gary

  • Firefox is not displayed correctly on USB-screen

    Firefox 4.0 is not displayed correctly on USB-screen (Samsung SyncMaster LD 190). Firefox 3.6 was displayed correctly.
    looks like an incompatibility problem between UbiSync and FF 4.0

    You can try to disable hardware acceleration in Firefox.
    *Firefox > Preferences > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration
    If you have made changes to Advanced font settings like increasing the minimum/default font size then try the default minimum setting "none" and the default font size 16 in case the current setting is causing problems.
    *Firefox > Preferences > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow pages to choose their own fonts.
    *Firefox > Preferences > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"
    It is better not to increase the minimum font size, but to use an extension to set the default page zoom to prevent issues with text not being displayed properly.
    You may have zoomed the page(s) by accident.
    Reset the page zoom on pages that cause problems.
    *<b>View > Zoom > Reset</b> (Ctrl/Command+0 (zero))
    *http://kb.mozillazine.org/Zoom_text_of_web_pages

  • Firefox page images do not display only text and links

    New desktop (not this one) with windows 8.1 Pro, Firefox 29, Norton Internet security. When I go to many of the Firefox pages images do not display, only text and links. This is true for the "get add-ons" page. I can search for add-ons, but when I try to install one, the installation fails. Is there a security setting in windows or NIS that is blocking Firefox images and installations? The Firefox installation went smoothly without error. Other sites do not have this problem.

    Wow! I never would have thought of that! My time settings were incorrect when I set up the PC, and I thought I set them. I did have the day, date, and time set correctly. But I did not have AM/PM set right. So, I was off by 12 hours. I corrected it and, voila, all works well.
    I'm so happy now, because I can now get all the security extensions I've grown to love:
    - NoScript
    - Ghostery
    - Better Privacy
    - Adblock Plus
    You guys are great! Thank you so much for your help.

  • I can't stay signed in to any site. I have windows 7 64-bit and firefox 3.6.3

    I cannot stay signed in to any site. It will remember my password but will not keep me logged in. I am using Windows 7 64-bit and Firefox 3.6.3
    I have deleted my cookies and the cookies.sqlite file in the profile folder.
    == This happened ==
    Every time Firefox opened
    == since I got windows 7

    Websites remembering you and automatically log you in is stored in a cookie that you must allow: Tools > Options > Privacy > Cookies: "Exceptions"
    Make sure that you do not use [[Clear Recent History]] to clear the 'Cookies' and the 'Site Preferences'.
    See also [[Cookies]]

  • Firefox 3.6.6 Not Displaying Gmail Contacts & Calendar and at least 1 other website correctly after using Microsoft Windows Easy Transfer

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    In migrating from an XP PC to a new Win 7 PC, I downloaded Firefox to the new PC and it worked fine - got my Gmail contacts, calendar, etc. Later I used Micros Soft's Windows Easy Transfer to move data, profiles, etc to the new PC. Then could log onto Gmail but it would not show Contacts or Calendar. I then uninstalled Firefox and reinstalled it - nohelp, then I did a system to Restore to before I did the Windows Easy Transfer - no help, then I manually moved my Firefox Profile from the XP machine - no help. BTW at least one other website does not display correctly: http://www.hollandamerica.com/main/Main.action. NOTE - through all this Internet Explorer has shown these sites correctly.
    == This happened
    ==
    Every time Firefox opened
    == Used Microsoft Windows Easy Transfer
    ==
    == Troubleshooting information
    ==
    Troubleshooting Information
    This page contains technical information that might be useful when you're
    trying to solve a problem. If you are looking for answers to common questions
    about Firefox, check out our support web site.
    Copy all to clipboard
    Application Basics
    Name
    Firefox
    Version
    3.6.3
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Flashblock 1.5.13 true {3d7eb24f-2740-49df-8937-200b1cc08f8a}
    Google Notebook 1.0.0.22 false [email protected]
    Microsoft .NET Framework Assistant 1.2.1 true {20a82645-c095-46ed-80e3-08825760534b}
    PDF Download 3.0.0.1 false {37E4D8EA-8BDA-4831-8EA1-89053939A250}
    Java Console 6.0.20 true
    McAfee SiteAdvisor 3.0 true
    Modified Preferences
    Name
    Value
    accessibility.typeaheadfind.flashBar 0
    browser.history_expire_days 20
    browser.history_expire_days.mirror 20
    browser.places.importBookmarksHTML false
    browser.places.importDefaults false
    browser.places.leftPaneFolderId -1
    browser.places.migratePostDataAnnotations false
    browser.places.smartBookmarksVersion 2
    browser.places.updateRecentTagsUri false
    browser.startup.homepage https://mail.google.com/mail/?shva=1#contacts
    browser.startup.homepage_override.mstone rv:1.9.2.3
    browser.tabs.loadInBackground false
    dom.disable_window_move_resize true
    dom.event.contextmenu.enabled false
    extensions.lastAppVersion 3.6.3
    general.useragent.extra.microsoftdotnet ( .NET CLR 3.5.30729)
    network.cookie.lifetimePolicy 1
    network.cookie.prefsMigrated true
    network.image.imageBehavior 0
    places.last_vacuum 1273287748
    print.print_printer HP Photosmart C7100 series
    print.printer_HP_OfficeJet_Pro_1170Cse.print_bgcolor false
    print.printer_HP_OfficeJet_Pro_1170Cse.print_bgimages false
    print.printer_HP_OfficeJet_Pro_1170Cse.print_command
    print.printer_HP_OfficeJet_Pro_1170Cse.print_downloadfonts false
    print.printer_HP_OfficeJet_Pro_1170Cse.print_evenpages true
    print.printer_HP_OfficeJet_Pro_1170Cse.print_footercenter
    print.printer_HP_OfficeJet_Pro_1170Cse.print_footerleft &PT
    print.printer_HP_OfficeJet_Pro_1170Cse.print_footerright &D
    print.printer_HP_OfficeJet_Pro_1170Cse.print_headercenter
    print.printer_HP_OfficeJet_Pro_1170Cse.print_headerleft &T
    print.printer_HP_OfficeJet_Pro_1170Cse.print_headerright &U
    print.printer_HP_OfficeJet_Pro_1170Cse.print_in_color true
    print.printer_HP_OfficeJet_Pro_1170Cse.print_margin_bottom 0.3
    print.printer_HP_OfficeJet_Pro_1170Cse.print_margin_left 0.5
    print.printer_HP_OfficeJet_Pro_1170Cse.print_margin_right 0.3
    print.printer_HP_OfficeJet_Pro_1170Cse.print_margin_top 0.3
    print.printer_HP_OfficeJet_Pro_1170Cse.print_oddpages true
    print.printer_HP_OfficeJet_Pro_1170Cse.print_orientation 0
    print.printer_HP_OfficeJet_Pro_1170Cse.print_pagedelay 500
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_data 1
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_height 11.00
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_size 1634485807
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_size_type 0
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_size_unit 0
    print.printer_HP_OfficeJet_Pro_1170Cse.print_paper_width 8.50
    print.printer_HP_OfficeJet_Pro_1170Cse.print_printer HP OfficeJet Pro 1170Cse
    print.printer_HP_OfficeJet_Pro_1170Cse.print_reversed false
    print.printer_HP_OfficeJet_Pro_1170Cse.print_scaling 1.00
    print.printer_HP_OfficeJet_Pro_1170Cse.print_shrink_to_fit true
    print.printer_HP_OfficeJet_Pro_1170Cse.print_to_file false
    print.printer_HP_Photosmart_C7100_series.print_bgcolor false
    print.printer_HP_Photosmart_C7100_series.print_bgimages false
    print.printer_HP_Photosmart_C7100_series.print_command
    print.printer_HP_Photosmart_C7100_series.print_downloadfonts false
    print.printer_HP_Photosmart_C7100_series.print_edge_bottom 0
    print.printer_HP_Photosmart_C7100_series.print_edge_left 0
    print.printer_HP_Photosmart_C7100_series.print_edge_right 0
    print.printer_HP_Photosmart_C7100_series.print_edge_top 0
    print.printer_HP_Photosmart_C7100_series.print_evenpages true
    print.printer_HP_Photosmart_C7100_series.print_footercenter
    print.printer_HP_Photosmart_C7100_series.print_footerleft &PT
    print.printer_HP_Photosmart_C7100_series.print_footerright &D
    print.printer_HP_Photosmart_C7100_series.print_headercenter
    print.printer_HP_Photosmart_C7100_series.print_headerleft &T
    print.printer_HP_Photosmart_C7100_series.print_headerright &U
    print.printer_HP_Photosmart_C7100_series.print_in_color true
    print.printer_HP_Photosmart_C7100_series.print_margin_bottom 0.300000011920929
    print.printer_HP_Photosmart_C7100_series.print_margin_left 0.5
    print.printer_HP_Photosmart_C7100_series.print_margin_right 0.300000011920929
    print.printer_HP_Photosmart_C7100_series.print_margin_top 0.300000011920929
    print.printer_HP_Photosmart_C7100_series.print_oddpages true
    print.printer_HP_Photosmart_C7100_series.print_orientation 0
    print.printer_HP_Photosmart_C7100_series.print_pagedelay 500
    print.printer_HP_Photosmart_C7100_series.print_paper_data 1
    print.printer_HP_Photosmart_C7100_series.print_paper_height 11.00
    print.printer_HP_Photosmart_C7100_series.print_paper_size 1634485807
    print.printer_HP_Photosmart_C7100_series.print_paper_size_type 0
    print.printer_HP_Photosmart_C7100_series.print_paper_size_unit 0
    print.printer_HP_Photosmart_C7100_series.print_paper_width 8.50
    print.printer_HP_Photosmart_C7100_series.print_reversed false
    print.printer_HP_Photosmart_C7100_series.print_scaling 0.80
    print.printer_HP_Photosmart_C7100_series.print_shrink_to_fit false
    print.printer_HP_Photosmart_C7100_series.print_to_file false
    print.printer_HP_Photosmart_C7100_series.print_unwriteable_margin_bottom 0
    print.printer_HP_Photosmart_C7100_series.print_unwriteable_margin_left 0
    print.printer_HP_Photosmart_C7100_series.print_unwriteable_margin_right 0
    print.printer_HP_Photosmart_C7100_series.print_unwriteable_margin_top 0
    print.printer_hp_psc_1200_series.print_bgcolor false
    print.printer_hp_psc_1200_series.print_bgimages false
    print.printer_hp_psc_1200_series.print_command
    print.printer_hp_psc_1200_series.print_downloadfonts false
    print.printer_hp_psc_1200_series.print_evenpages true
    print.printer_hp_psc_1200_series.print_footercenter
    print.printer_hp_psc_1200_series.print_footerleft &PT
    print.printer_hp_psc_1200_series.print_footerright &D
    print.printer_hp_psc_1200_series.print_headercenter
    print.printer_hp_psc_1200_series.print_headerleft &T
    print.printer_hp_psc_1200_series.print_headerright &U
    print.printer_hp_psc_1200_series.print_in_color true
    print.printer_hp_psc_1200_series.print_margin_bottom 0.3
    print.printer_hp_psc_1200_series.print_margin_left 0.5
    print.printer_hp_psc_1200_series.print_margin_right 0.3
    print.printer_hp_psc_1200_series.print_margin_top 0.3
    print.printer_hp_psc_1200_series.print_oddpages true
    print.printer_hp_psc_1200_series.print_orientation 0
    print.printer_hp_psc_1200_series.print_pagedelay 500
    print.printer_hp_psc_1200_series.print_paper_data 1
    print.printer_hp_psc_1200_series.print_paper_height 11.00
    print.printer_hp_psc_1200_series.print_paper_size 1634485807
    print.printer_hp_psc_1200_series.print_paper_size_type 0
    print.printer_hp_psc_1200_series.print_paper_size_unit 0
    print.printer_hp_psc_1200_series.print_paper_width 8.50
    print.printer_hp_psc_1200_series.print_reversed false
    print.printer_hp_psc_1200_series.print_scaling 1.00
    print.printer_hp_psc_1200_series.print_shrink_to_fit true
    print.printer_hp_psc_1200_series.print_to_file false
    privacy.clearOnShutdown.cookies false
    privacy.clearOnShutdown.downloads false
    privacy.clearOnShutdown.formdata false
    privacy.clearOnShutdown.history false
    privacy.clearOnShutdown.passwords true
    privacy.cpd.cookies false
    privacy.cpd.downloads false
    privacy.cpd.formdata false
    privacy.cpd.history false
    privacy.item.downloads false
    privacy.item.formdata false
    privacy.item.history false
    privacy.item.passwords true
    privacy.sanitize.migrateFx3Prefs true
    privacy.sanitize.promptOnSanitize false
    privacy.sanitize.sanitizeOnShutdown true
    security.warn_viewing_mixed false
    == Firefox version
    ==
    3.6.3
    == Operating system
    ==
    Windows 7
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 ( .NET CLR 3.5.30729)
    == Plugins installed
    ==
    *-Default Plug-in
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *Shockwave Flash 10.0 r45
    *McAfee Virtual Technician plugin for Mozilla (Gecko Version: 1.8b1)
    *3.0.50106.0
    *NPWLPG
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    *Adobe PDF Plug-In For Firefox and Netscape

    Oops - for some reason, this problem now seems to have gone away. May have had something to do with Flash. I'll keep my fingers crossed.

  • When I open a pdf in Adobe Acrobat xi pro it is not displaying correctly. If a file is all black with orange writing, I will see only the orange writing. Its not until i print it or open crop pages dialog box that i see the background. i am on a Windows 7

    When I open a pdf in Adobe Acrobat xi pro it is not displaying correctly. If a file is all black with orange writing, I will see only the orange writing. Its not until i print it or open crop pages dialog box that i see the background.
    i am on a Windows 7 professional PC, 64-bit.

    If anyone is reading this still looking for what caused the issue and how to fix it here is what I discovered.
    The antivirus program our company uses, Bitdefender Antivirus Plus, was causing some of the PDF files not to open. After troubleshooting the different modules and settings the culprit was..
    Scan SSL in Privacy Control Settings. Turning it OFF solved the problem and all the PDF files that previously would not open now open just fine. This issue has been sent to Bitdefender for them to review. If you use a different antivirus program and are having this issue try locating the Scan SSL setting and see if turning it off solves the problem.

  • Thumbnails are not displayed correctly in Firefox, but displayed correctly in Safari and G. Chrome

    Firefox display problems regarding this customers site:
    http://gardenia.dk/collections/collection/
    Thumbnails are not displayed correctly in Firefox - only a tiny bit of the picture is visible, incorrect scale (displayed correctly in Safari and Google Chrome).
    Can I do anything to make it work in Firefox, too?
    Kind regards,
    Annette

    This article might help you-
    https://support.mozilla.org/en-US/kb/websites-look-wrong-or-appear-differently

  • Source monitor and program monitor boxes will not display video in full only half

    I have adobe premiere pro cs6 and source monitor and program monitor boxes will not display video in full only half.  So the top half of both monitors are black and the bottom half is where the video displays.  But you can see that the video is missing the top part.  Like people's heads are cut off and can only see body.  How can i fix this so premiere pro cs6 will use the full monitors boxes to display my video?

    This is a known issue with a recent Windows update.
    The Fix (post 3):
    http://forums.adobe.com/message/5494175#5494175
    The Status Update (posts 46 / 52):
    http://forums.adobe.com/message/5555797#5555797

  • Muse Site does not display completely, amazingly, in Safari.  In Chrome, Firefox and IE, however, the site is displayed correctly ...

    Muse Site does not display completely, amazingly, in Safari.  In Chrome, Firefox and IE, however, the site is displayed correctly ...
    Kari

    Hi Aish
    The site URL is: http://hotelegerkingen.businesscatalyst.com
    The page
    http://hotelegerkingen.businesscatalyst.com/räume --- preise.html
    and
    http://hotelegerkingen.businesscatalyst.com/menus.html
    not show the whole content (only in Safari)
    Thanks for the support!
    Regards ,
    Kari
    H·B·H Communications & Events
    Karl Wälle
    [email protected]
    Breitensteinstrasse 96
    8037 Zürich
    Fon +41 44 447 40 90 (direct 99)
    Mobile +41 79 964 65 12
    Fax +41 44 447 40 89
    [email protected]
    www.hbh-com.ch<http://www.hbh-com.ch>
    Am 14.08.14 17:31 schrieb "Aishvarya Raj Rastogi" unter <[email protected]<mailto:[email protected]>>:
    Muse Site does not display completely, amazingly, in Safari.  In Chrome, Firefox and IE, however, the site is displayed correctly ...
    created by Aishvarya Raj Rastogi<https://forums.adobe.com/people/aishvarya+rastogi> in Help with using Adobe Muse CC - View the full discussion<https://forums.adobe.com/message/6640545#6640545>

  • When i open finder the windown is a completely blank grey box with the title "Window" as a header, and all my folders will not open when clicked

    when i open finder the windown is a completely blank grey box with the title "Window" as a header, and all my folders will not open when c
    the problem started when my computer screen broke from something falling on it, the screen was replaced but the people that fixed it for me told me there may be some hard disk issues when a problem like this happens, they ran their own checks and found nothing and i was given my laptop back, then when i tried to use it, i found this problem. everything else works fine.
    i have shutdown and re-started my computer multiple times and i have also re-started finder multiple times, both having no effect
    i have also done a few other things to find that my apple.com.finder.plist and apple.com.sidebar.plist are both missing, and are not re-creating themselves, i have found no way to bring them back either.
    any help would be greatly appreciated, thanks

    there is an app called daisydisk on mac app store which will help you see exactly where the memory is focused and consumed try using that app and see which folders are using more memory

  • I run Windows 8.1. I have received the result after several attempts uninstalling and reinstalling iTunes, "ITunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 127)" What can I co?

    I run Windows 8.1. I have received the result after several attempts uninstalling and reinstalling iTunes, "ITunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 127)" What can I do? to solve the problem.  Tried to clean the windows registry, no change.  Very frustrating.  Any advice is much appeciated.
    Thanks.

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

Maybe you are looking for