[Solved] Site display issues in Firefox 11.0-2/KDE 4.8.1

I have been having issues with the form fields of the AUR page. Specifically, with any version of Firefox after v9; the fields are incredibly small. (See http://imgur.com/KEdYk for what it looks like). I have removed gtk-kde4, and even created a vanilla user with a brand-new home directory, and this other user profile experiences the same problem. edit: In a fresh install of GNOME 3, the AUR page displays correctly. Also displays correctly if I revert to FF v9
This problem doesn't occur in Chromium, so I thought it was a FF issue, however, I've not heard of anybody else with this same problem... So I'm a little stumped. I filed a bug report a while back, (https://bugs.archlinux.org/task/28613 ), but it has been closed. Any help in diagnosing and/or fixing this issue would be helpful and appreciated. Thanks!
Last edited by Axanon (2012-03-25 14:03:55)

That is sounding quite strange.  I've had display issues similar to yours with login fields and search fields that are usually at the top of a we page appearing distorted and on top of each other.  Another prevalent problem that I noticed on YouTube was that text I enter into any field doesn't show up, but it is entered and I can search.  I'm running xfce so I don't know what to say.  Haven't had the problem in gnome, though I really don't like gnome 3 for its lack of what of what I considered organizational hierarchy.  (though I am against hierarchies of other sorts),  Ive also found that clearing the Firefox cache can solve some of these problems.

Similar Messages

  • Sudden Display issues in Firefox from Dreamweaver-built pages

    Hi, first time posting and a novice at Dreamweaver and web design so please bare with me.
    I'm an IT administrator for a small charity company and they decided to ask me to build them a website, I bought Dreamweaver in University and had a small try with it but never really used it since.
    Now I'm no web designer but I'm trying the best I can, I managed to make a few preliminary pages for use and found they displayed correctly in most browsers apart from IE and Opera.
    But Suddenly today - after no editing or alterations since friday (and it displayed fine yesterday on tuesday), it started experiencing the same issues in Firefox this morning for no apparent reason. I assumed that it would be a problem with Firefox but when trying to sign up to Firefox help I meet an "Access Denied" page after clicking to sign up. Now I know there's no point in searching their forums for that issue because of course, how can someone complain they have the problem when the fact they can't get on the forums to post is what's preventing the post in the first place?
    I googled both of those issues and turned up nothing, which led me here.
    The "Access Denied" at signup issue is obviously not what I'm seeking for here though, but would like to know if anyone else has experienced the issue with the formatting suddenly displaying incorrectly in browsers when they worked fine before?
    Like I said, I'm a complete novice at web design and dreamweaver so feel free to tell me the coding in the website is pants, I know it is but it does (did!) the job in most browsers.
    Any help at all would be appreciated.
    Faultlessdark
    www.guidonsupportservices.org.uk
    PS. For an ironic laugh - note the "This website is best displayed in Mozilla Firefox and Google Chrome" at the bottom of the page

    My advice, although negative, would be to stay clear unless you are confident and capable of using html and css. Dreamweaver won't do the job for you and you will be biting off more than you can chew.
    Having said that I've made the necessary changes so that your page will work in all browers. Just copy the whole html code and css below, paste into a new Dreamweaver document and save to your site root folder.
    Do not mix measurements i.e., width 43em, padding 15px etc. I would advise staying with px based measurements as measurements are critical to if the site works or not. I don't know what 43em + 15px makes but I do know what 170px + 15px makes. I have changed the width of the containers in your code to px.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <title>Home</title>
    <script type="text/javascript" src="swfobject.js"></script>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style type="text/css">
    <!--
    body {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #666666;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;
    background-image: url(background.jpg);
    background-color: #FFFFFF;
    /* Tips for Elastic layouts
    1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
    2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
    3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
    #wrapper {
    width: 909px;
    margin: 0 auto;
    .oneColElsCtrHdr #sidebar1 {
    float: left;
    width: 170px; /* since this element is floated, a width must be given */
    border: 2px solid #FFF;
    padding: 15px 0; /* top and bottom padding create visual space within this div */
    color: #FFFFFF;
    text-align: left;
    font-family: Verdana, Geneva, sans-serif;
    .oneColElsCtrHdr #container {
    width: 735px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
    background: #FFFFFF;
    border: 0px solid #000000;
    text-align: left; /* this overrides the text-align: center on the body element. */
    .oneColElsCtrHdr #container2 {
    width: 735px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
    background: #FFFFFF;
    padding: 0px 0px;
    float: left;
    border: 0px solid #000000;
    text-align: left;
    .oneColElsCtrHdr #header {
    background: #FFFFFF;
    padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
    .oneColElsCtrHdr #header h1 {
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    .oneColElsCtrHdr #mainContent {
    padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
    background: #FFFFFF;
    .oneColElsCtrHdr #footer {
    padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
    background:#FFFFFF;
    .oneColElsCtrHdr #footer p {
    margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
    padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    text-align: center;
    font-size: 70%;
    .oneColElsCtrHdr #container #mainContent h1 {
    text-align: center;
    .oneColElsCtrHdr #container #mainContent h2 {
    text-align: center;
    .White {
    color: #FFF;
    .White {
    font-size: 70%;
    .oneColElsCtrHdr #container #FlashMenuLabs {
    text-align: center;
    .oneColElsCtrHdr #container #FlashMenuLabs {
    font-size: 80%;
    #sidebar1 p {
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    .oneColElsCtrHdr #sidebar1 p {
    font-size: 90%;
    .oneColElsCtrHdr #sidebar1 p {
    font-family: "Times New Roman", Times, serif;
    -->
    </style>
    </head>
    <body class="oneColElsCtrHdr">
    <div id="wrapper">
    <div id="sidebar1">
    <center><h3>Site Map</h3>
      <strong>Home</strong>
      <strong><p>Guidon Support</p></strong></center>
      <p>-Our aim</p>
      <p>-What we do</p>
      <p>-Management Team </p>
      <p> -Careers</p>
    <center><strong><p>Guidon Recycling</p></strong></center>
      <p>-Materials</p>
      <p>-Our Customers</p>
      <p>-How we can help</p>
      <center><strong><p>Groundworks</p></strong></center>
      <p>-Projects</p>
      <p>-Services</p>
      <p>-Our Skills</p>
      <center><strong><p>The Charity</p>
      <p>Contact Us</p>
      <p>About Us</p></strong></center>
    </div>
      <div id="container2">
      <div id="container">
       <img src="guidon banner.jpg" width="734" height="229" />
      </div>
      <!-- Flash Menu Labs – www.flashmenulabs.com -->
      <div id="FlashMenuLabs">Oh dear, it appears you have an older version of Adobe Flash player or don't have it installed, you need it to navigate our website - <a href="http://www.adobe.com/go/getflashplayer">Go get it!</a>            
      </div> 
      <script type="text/javascript">
        // <![CDATA[
            var so = new SWFObject("menu.swf", "menu", "740", "160", "8", "#000000");
            so.addParam("wmode", "transparent");
            so.addParam("scale", "noscale");
            so.addParam("salign", "TL");   
            so.write("FlashMenuLabs");
        // ]]>
        </script> 
       <div id="mainContent">
        <h1>Welcome - Under Construction</h1>
        <p>Welcome to the Guidon website. Guidon Support services is just a small part of the Guidon Group, which covers different areas such as Recycling, Civil Engineering and work based training. Please be aware that the site is under construction and this is the Home page. This is currently on here as a test to ensure that everything displays correctly. The full website will be available soon.</p>
        <p>You'll notice that our company is split in to these different areas on the website - so if you want to know about any of our services just pick the department on the handy menu above and head on over. </p>
        <p>Our recycling services cover a wide range of materials, including various metals and plastics - if you have some materials that you want us to take off your hands, go take a look to see if we process it, then give us a call. We'll collect and move it all - for free!</p>
        <p>Guidon Support Services is the main branch of the Guidon Group. The active offshoot of The Guidon Charity, Support Services aims to give current and ex-servicemen the opportunity to transfer their experience and skills to be applied in the civilian workplace, allowing them to get on their feet if they're having trouble getting back in to work.</p> 
        <p>Our groundworks services is our own little civil engineering division aiming to install GSHP (Ground Source Heating Pump) systems for private and commercial properties.</p>
        <h2>The Guidon Charity</h2>
        <p>The Guidon Group is set up for one ideal: To  reduce the harm caused by homelessness, drug and or alcohol abuse and to  support serving or former service personnel or their families to lead a happy,  healthy and productive life. Profits generated by the Guidon Group are passed on to the Guidon Charity to help us fulfill this aim
          <!-- end #mainContent -->
        </p>
        <p> </p>
      </div>
      <div id="footer"> 
        <p>This website is best viewed in Google Chrome and Mozilla Firefox - <a href="Browser Support Page.html">Why?</a></p>
        <p>Guidonsupportservices.org.uk &copy;2011 The Guidon Group. </p>
        <p>Contact the webmaster; [email protected] </p>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    </div><!-- end wrapper --
    </body>
    </html> 

  • Display issue in Firefox

    We are using Vibe 3.3, everything display is fine in IE. But issue on Firefox. And we find that one more big problem is Firefox cannot show all records.
    Attached screen capture for your reference.
    I am try to edit ssf_css.jsp but not sucess.

    You already asked the same thing some time ago: https://forums.novell.com/showthread...lem-in-firefox
    Please do not post the same issue in these forums twice!
    In my eyes you've got 3 options:
    1.) I really suggest buying maintenance for your site again. This would be really worth it, especially because you would be entitled for Vibe 4.0 which is coming next year and which will bring lots of incredibly great enhancements!
    2.) keep on hacking files and stay with an unsupported and potentially unsecure system.
    3.) get professional support which Novell and service providers like us can provide -> but this might be more expensive than buying maintenance again.
    I would suggest No. 1!
    Sorry for being so direct. ;-)
    HTH
    Cheers
    Erik

  • Live site display issues {subject edited by moderator}

    Okay, so on dreamweaver, the website looks fine (albeit, often it doesn't resemble what the actual final site looks like), but my letters from my paragraphs are all scrunched to the left side.  It appears to be CSS because it has affected all the pages, but I've been trying my damnedest to tweak different lines of code to no avail.  What makes it even more difficult to troubleshoot is that in the "live" and "design" mode, they appear perfectly fine.  However, when I upload the site to my host, the letters are all crammed to the left side making my "professional" website look like sh#t!
      Can someone please look through my source code and help a fellow creator out.  Thanks so much
    www.11thworldproductions.com

    I'm not seeing it in any of my browsers, which version of IE is giving you the trouble. I always assume IE is the problem when it isn't spelled out (it's best to explain the problem in your body, not in your post title, it will get truncated)?
    In IE7 and 8, the entire site should be broken. There is a lot going on in your code that neither of those browsers can handle.
    Looks fine in IE9 and 10, Firefox and Chrome for me.
    If your issue is showing in IE10 or 11, make sure to turn off Compatibility Mode if it's enabled, that breaks everything.
    It could also be a browser cache issue, make sure to clear that out and look at the site again.
    Also make sure to run your page through the validatror at http://validator.w3.org to get a listing of your html errors. Those errors can cause display problems between browsers/versions/platforms.

  • Cross-computer site rendering issues in Firefox

    I'm having a problem with how Firefox renders a site we recently deployed at our company.
    Our site has a standard link list navigation set at the top - block display, floated left, height/width padding to fit, the usual. However, the navigation breaks to the next line when viewed on my computer. In a fixed-width layout, this becomes an issue. Normally, I would adjust the padding values to get it to fit on one line, but the odd part is that through most of the initial development for the site, the navigation remained on one line and was never touched or adjusted after being created. Let me further elaborate by saying that this isn't a CSS inheritance issue or cascade issue. I'd be posting in the wrong forum if that were the case. I know this because the site renders the navigation in one line on several co-workers computers while breaking it to two lines on mine.
    I attributed this to the 9.01 update as I had installed it a few hours before the navigation started breaking. I did an uninstall/reinstall of Firefox, system restore (in case it wasn't Firefox), and I even attempted to push the version back to FF8. However, I had my co-worker install the same updates through 9.01, and the site looks fine on his computer. Same for someone else's.
    TL;DR - Our website looks different on the same browser/computer setup.
    I poked around these forums a little bit and found a thread about the hardware acceleration setting "gfx.direct2d.disabled" and how it affects rendering. I switched the value to "true" and the site immediately corrected itself. However, I don't understand why this fixes the problem on my computer and why my co-workers computers (or anyone else for that matter) do not need to perform the same fix to have an unbroken experience. I went home later that weekend and my home computer also breaks the navigation into two lines.
    Anyone have any insight into this? Thanks in advance.

    No. We use standard system fonts for the entire site. Someone at the Mozillazine forums mentioned that the hardware acceleration feature triggers font metrics problems with certain system setups. Can anyone elaborate on this?

  • I have a display issue with Firefox when I open my GODADDY Web email.

    My GODADDY email opens in list form and not as a web screen as it does in IE10 or Chrome.

    Hi chick.aday, this seems to be expected, however the Go Daddy support may also have some good advice how to change the view.

  • Help! My DW site displays in FireFox, but does not work in IE

    Help! My DW site displays fine in FireFox, but only the background loads in Internet Explorer and I get an error message that the site cannot open. The site is www.bransonareagolfcouncil.com

    You've got lots of validation errors:
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.bransonareagolfcouncil.com%2F
    Also, this forum is for DW application development. In the future try posting to the Dreamweaver forum.

  • Output display issue in only a particular user account.

    Let me start off by noting that I recently switched to mac from windows. Last night I was browsing around the system just getting a feel for the environment when the color / display changed and looked something like a display one would see from booting up in safe mode on a windows machine. I went on to restart and log back into the user account where I was having the display issue, but that did not work. I ran the tech tool deluxe suite to try and find the problem, maybe the video ram? That test came back with no issues to report. I went into the administrator account and found that the display there was normal, and then checked the problem account once more to find that my problem was not solved. Luckily I did not have a lot of information on the problem account so I went onto delete the problem account and recreated a new one. This solved my display issues. Does anyone have any idea why this would have happened or what I can do to prevent it from happening? Should I contact Apple because I am not sure if this may be a hardware/software issue/defect? Thanks.

    If you open the Universal Access pane in System Preferences and select "White on Black" in the Seeing tab does that replicate the problem? I'm not familiar with Safe mode on a Windows machine.

  • Why is my site displayed incorrect?

    Hi there,
    I've made a site in iWeb 3.0.4 and I have some very bad problems. It displays extremely bad in firefox or chrome and I don't know what to do .
    Can you help me out ?
    The address is http://www.mostbeautifulsites.com/MostBeautifulSites.com/Acasa.html
    If is going to look bad, even in Safari , try to reload the page.
    The older site is also made in iWeb and it's diplayng real nice . It's www.divisiongas.com
    As you may observe I am an apple fan.
    Waiting for your answers .....help me out guys.

    Your site displays fine in Firefox and Chrome. Try emptying the browser cache(s) and view again.
    Your "navigation" is not a navigation menu!
    It consists of a background image....
    http://www.mostbeautifulsites.com/MostBeautifulSites.com/Acasa_files/shapeimage_ 1.png
    ... with some text images dropped onto it. These images are not inside an anchor tag and there's no URL so they are not actually links.
    You need to replace these images with text boxes, select the text in each one and create it as a link to the appropriate page using the Link inspector and "Link to: one of my pages".

  • Need help with Firefox display issue on one page of site

    I have a page that W3C validates, displays properly in IE and Netscape, but does not display properly in Firefox. The issue is with a style class applied to the inner centered table. class= "vert_table" This class works on all of the other pages in the site, but not in this one.
    The page:
    http://www.redshift.com/~lorac/sdy-46-49.html
    The issue:
    < table class="vert_table" width="760" border="0" cellspacing="0" cellpadding="0" align="center" bgcolor="#f1ebe8" >
    The vertical rule does not display, and further down the page a dark left-right border appears starting with this text.
    my mother, when I was wasting my life away not knowing who I was,
    and ends with:
    Mojin: (hugging him) I don't expect you to love me. I just want you to live, that's all.
    I have been looking through this code for two days, searching for any offending omission in code or redundancy that would break the page. I've searched for missing div tags but none are apparent to me. I'm hoping someone with fresh eyes can spot it right away.
    It's odd that the page validates but Firefox cannot display it properly.
    Sample page of code working properly:
    http://www.redshift.com/~lorac/sdy-41-45.html
    Any help is appreciated.

    Hi Jim, thanks for the reply. Your suggestions sound interesting but I'd like to figure out why this particular page doesn't work when all of the others do. I'm sure it's just a little code thing that I'm overlooking.
    I could revert back to a saved page, but I updated text and images on this page before the verticle border broke, so I don't want to lose those edits. And that is why I'd like to fix this one instead of redesigning the page.
    BTW, I forgot to mention in my first post, GoLive CS, W2K.

  • HTML table display issues in Safari and Firefox

    Hey,
    A few days ago, in both firefox and safari, i noticed that whenever i go to certain sites with (i'm assuming) what are HTML tables, they aren't displaying properly. The tables are going way bigger than they should.
    ex. When i go to craigslist.org and click on any link, each item on the page has way more space between lines than it should. To see what i mean check out these screen capture.
    http://www.killtheteleprompter.com/picture1.png
    http://www.killtheteleprompter.com/picture2.png
    Also, perhaps a related issue, in Firefox, the page scrolling isn't smooth anymore when i use my trackpad.
    I tried trashing the preferences for each browser in my library, to no avail. Any help would be awesome. thanks

    hey thanks. The links in the orgininal post are fixed. To view the difference, look at the captures, then type in the url that appears in the captures to see what it should look like.
    http://www.killtheteleprompter.com/picture1.png
    http://www.killtheteleprompter.com/picture2.png

  • Site displays well in Safari and IE, but no good in Firefox

    I built a site using iWeb '08 (2.0.4) and published it to space on iDisk. The site displays as designed on Safari (3.2.1); is marginally acceptable on IE 7 (in a virtual Windows emulator); and is unusable on Firefox (3.0.5).
    I notice that iWeb generated three css files for each page of the site: a pagename.css, a pagenameMOZ.css, and a pagenameIE.css. The pagename.css is lovely; the pagenameIE.css is very basic; the pagenameMOZ.css is just a skeleton.
    I'm new to this. How do I resolve the issue? Would using different fonts be of some help? Limiting the design to avoid the use of lists and shapes? Must I generate three versions of the website to support these three browsers? And if so, how does iWeb know which standard to use for each build?

    I have the same issue - I use Firefox 3.1 Beta 2 (cause i'm one of those early adopters !!!)...the screen is OK, but any graphics I've imported into it, especially those that are GIF/transparent, now have a funny shadow under it, ie:
    http://web.me.com/bigmouthmedia/bmm/Voice_Demos.html
    But yet I look at it in Safari, and it's perfect. Haven't yet tested it on Windows XP/7
    Message was edited by: Paul Julian

  • IE 7 and Firefox 3 display issues - neither work as expected

    hi,
    I'm having a terrible time trying to figure out how to solve the 2 display issues I have on IE and Firefox. I can't get either one to work like it's supposed to.
    I'm using RH8, Webhelp and it doesn't matter what skin I use (nothing custom, just what is available in RH).
    On IE 7.0.5730.13, Webhelp only displays information in the information frame (text) when I attempt to resize the panes. If I just click and move my mouse just a little bit to expand the TOC text magically appears for THAT selected TOC topic only. If I move to another topic in the TOC, I have to do the same thing. And by resize, I mean, I click and move a millimeter and the stuff displays. Otherwise, if I do nothing, the TOC displays as expected but the text frame (contents) is blank.
    On Firefox 3.5.6, the TOC pane does not display 100% vertically........it's cut off at the end of the TOC and contains scrollbars to move vertically and horizontally.
    So, neither browser really works for me.  Am I the only one?
    I'm using RH 8.0.0.203
    Any advice or suggestions are very much welcome.......

    Ahhh, okay.
    That actually seems to be providing a bit of a clue to the overall picture I might think. The icon should be kicking off a Dynamic HTML drop-down area.
    Since the icon isn't seemingly doing anything in FF, it's logical to me that you somehow have JavaScripting turned off in FF. This can be done using an Add on product, which is why I asked.
    It's also likely the reason for the super short TOC display. Typically the TOC depends on JavaScript to work its magick.
    My thought here is that if you and Peter can determine where JavaScript is being turned off, you will solve the issues.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • I am having some serious issues with firefox, i can't print anything because it is stuck on fax and I can't use any of the drop down menus on any site

    I am having some serious issues with firefox to the point of choosing another search engine. I can't print anything because it is stuck on fax and won't let me change it to my printer when i do try to select my printer it jumps right back to fax. The drop down menus do not work on any of the sites I go to. For example when purchasing clothes and you have to choose a size from a drop down menu I can't do it when I click on the drop down menu it doesn't work at all. I don't have a virus I ran my virus protector and no viruses are present. I don't have any suspicious issues going on with my computer so there has to be something in Firefox that is causing my issues. I tried internet explorer and I don't have any issues there. I hope you can help me because I love Firefox and would really like to continue to use it.

    Lots of issues there, main one getting fcpx going again, try deleting the preferences using the utility deveoped by these guys.
    http://www.digitalrebellion.com
    Try deleting your render files and re-rendering the project.
    Start with these and let us know how you go.
    Tony

  • [SOLVED] Certain Flash sites not working in Firefox 4...

    EDIT: Solved in post #15
    Using Firefox 4 stable from extra repo, something is up with my Flash where certain sites aren't seeing it, while others are. When it works, it plays fine. Here's some screenshots to illustrate what I mean:
    When I start a new session of a Firefox all Youtube videos are in the small window (even when I'm logged in) and the first video I watch, to get it to the bigger window I click the enlarge button as seen: http://i.imgur.com/vmmSF.png
    It plays fine in this little window, but when I click that button and it enlarges, it looks like this http://i.imgur.com/4xzoy.png
    Sometimes it will play and I can hear the audio while I only have that grey rectangle. Now, I can hit refresh and it will play back fine now on in this larger size, but this does not occur on my laptop with Arch and same packages.
    Then Vimeo, nearly all videos are like this http://i.imgur.com/zYkIT.png
    And on Break I don't even see anything: http://i.imgur.com/SIkT2.png
    Many sites tell me to upgrade my flash. Here is package info I am using just in case:
    Name : firefox
    Version : 4.0-1
    URL : http://www.mozilla.org/projects/firefox
    Licenses : MPL GPL LGPL
    Groups : None
    Provides : None
    Depends On : xulrunner=2.0 desktop-file-utils
    Optional Deps : None
    Required By : None
    Conflicts With : None
    Replaces : None
    Installed Size : 1952.00 K
    Packager : Ionut Biru <[email protected]>
    Architecture : i686
    Build Date : Mon 21 Mar 2011 01:58:57 PM EDT
    Install Date : Tue 22 Mar 2011 09:26:54 PM EDT
    Install Reason : Explicitly installed
    Install Script : Yes
    Description : Standalone web browser from mozilla.org
    Name : flashplugin
    Version : 10.2.153.1-1
    URL : http://get.adobe.com/flashplayer
    Licenses : custom
    Groups : None
    Provides : flashplayer
    Depends On : mozilla-common libxt gtk2 nss curl
    Optional Deps : libvdpau: GPU acceleration on Nvidia card
    Required By : None
    Conflicts With : None
    Replaces : flashplugin-beta
    Installed Size : 14224.00 K
    Packager : Ionut Biru <[email protected]>
    Architecture : i686
    Build Date : Tue 22 Mar 2011 06:46:42 AM EDT
    Install Date : Tue 22 Mar 2011 09:26:58 PM EDT
    Install Reason : Explicitly installed
    Install Script : Yes
    Description : Adobe Flash Player
    I have even removed my profile folder recently and started fresh, but it's still doing this Appreciate any help, thanks folks!
    Last edited by colbert (2011-04-17 02:17:44)

    Okay, here is the path for my profile:
    ~/.mozilla/firefox/hov5jr0l.bobbynew
    This is the entire pluginreg.dat file:
    Generated File. Do not edit.
    [HEADER]
    Version:0.14:$
    Arch:x86-gcc3:$
    [PLUGINS]
    libnpjp2.so:$
    /opt/java/jre/lib/i386/libnpjp2.so:$
    :$
    1299108618000:1:5:$
    The next generation <a href="http://java.sun.com">Java</a> plug-in for Mozilla browsers.:$
    Java(TM) Plug-in 1.6.0_24:$
    34
    0:application/x-java-vm:Java&#153 Plug-in::$
    1:application/x-java-applet:Java&#153 Plug-in Applet::$
    2:application/x-java-applet;version=1.1:Java&#153 Plug-in::$
    3:application/x-java-applet;version=1.1.1:Java&#153 Plug-in::$
    4:application/x-java-applet;version=1.1.2:Java&#153 Plug-in::$
    5:application/x-java-applet;version=1.1.3:Java&#153 Plug-in::$
    6:application/x-java-applet;version=1.2:Java&#153 Plug-in::$
    7:application/x-java-applet;version=1.2.1:Java&#153 Plug-in::$
    8:application/x-java-applet;version=1.2.2:Java&#153 Plug-in::$
    9:application/x-java-applet;version=1.3:Java&#153 Plug-in::$
    10:application/x-java-applet;version=1.3.1:Java&#153 Plug-in::$
    11:application/x-java-applet;version=1.4:Java&#153 Plug-in::$
    12:application/x-java-applet;version=1.4.1:Java&#153 Plug-in::$
    13:application/x-java-applet;version=1.4.2:Java&#153 Plug-in::$
    14:application/x-java-applet;version=1.5:Java&#153 Plug-in::$
    15:application/x-java-applet;version=1.6:Java&#153 Plug-in::$
    16:application/x-java-applet;jpi-version=1.6.0_24:Java&#153 Plug-in::$
    17:application/x-java-bean:Java&#153 Plug-in JavaBeans::$
    18:application/x-java-bean;version=1.1:Java&#153 Plug-in::$
    19:application/x-java-bean;version=1.1.1:Java&#153 Plug-in::$
    20:application/x-java-bean;version=1.1.2:Java&#153 Plug-in::$
    21:application/x-java-bean;version=1.1.3:Java&#153 Plug-in::$
    22:application/x-java-bean;version=1.2:Java&#153 Plug-in::$
    23:application/x-java-bean;version=1.2.1:Java&#153 Plug-in::$
    24:application/x-java-bean;version=1.2.2:Java&#153 Plug-in::$
    25:application/x-java-bean;version=1.3:Java&#153 Plug-in::$
    26:application/x-java-bean;version=1.3.1:Java&#153 Plug-in::$
    27:application/x-java-bean;version=1.4:Java&#153 Plug-in::$
    28:application/x-java-bean;version=1.4.1:Java&#153 Plug-in::$
    29:application/x-java-bean;version=1.4.2:Java&#153 Plug-in::$
    30:application/x-java-bean;version=1.5:Java&#153 Plug-in::$
    31:application/x-java-bean;version=1.6:Java&#153 Plug-in::$
    32:application/x-java-bean;jpi-version=1.6.0_24:Java&#153 Plug-in::$
    33:application/x-java-vm-npruntime:::$
    libflashplayer.so:$
    /usr/lib/mozilla/plugins/libflashplayer.so:$
    :$
    1300790802000:1:4:$
    Shockwave Flash 9.0 r115:$
    Shockwave Flash:$
    2
    0:application/x-shockwave-flash:Shockwave Flash:swf:$
    1:application/futuresplash:FutureSplash Player:spl:$
    [INVALID]

Maybe you are looking for

  • Adobe Photoshop CS3 MSI Error

    Hello, I have been getting the wierd error when I try to install Adobe Photoshop CS3 using the MSI package that I created. Could not write value data to key \SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Schedule\Handshake\{GUID}. Verify that you have

  • Problem with regexp_replace

    Hi everybody, Windows XP. Oracle version : SQL> select *   2   from v$version; BANNER Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bi PL/SQL Release 10.2.0.3.0 - Production CORE    10.2.0.3.0      Production TNS for Linux: Version 10

  • Copy between host and guest

    I'm a student at a Uni and I'm currently learning the basics about Windows Server Domain Controllers. One of the assignments required us to use a excel spreadsheet file to setup users in the domain, I tried copying this file from my host to the virtu

  • Pound sign "£" in emails - using mail

    sending out some emails yesterday, using some figures - tried sending £ symbol however, when people receive the email its not showing up just a question mark... so they not getting lets say £123.00 but ?123.00.. I have checked my language settings an

  • ALE Distribution LOIROU Change pointer

    Hello I want to know if it is possible to manage LOIROU idoc with change pointer management in SALE and how ?