Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

why does this website only work in Firefox 3.5 and below? https://www.virtualinvestmentcentre.com/upm/Login.html?cppt=0

  • 1 Antwort
  • 3 haben dieses Problem
  • 1 Aufruf
  • Letzte Antwort von cor-el

more options

This site used to display correctly in Firefox 3.5. Now it just displays a blank page, but no errors. Is there an add on that can help? Thank you

This site used to display correctly in Firefox 3.5. Now it just displays a blank page, but no errors. Is there an add on that can help? Thank you

Alle Antworten (1)

more options

The Tools > Error Console shows that there is an error (spurious quote in error1.png') in one of the CSS files that causes Firefox to skip part of that file.
That makes Firefox miss the rule body{display: block} to undo the all-at-once loading trick that sets body {display:none;}
You can contact the website and ask them to fix it.

You can use this bookmarklet to fix it for no:

javascript:void(document.body.style.display='block');

<!-- all-at-once loading trick: body should be set back to visible in last CSS @import -->
<style type="text/css">body {display:none;}</style>

Warning: Found unclosed string );'. Error in parsing value for 'background-image'. Declaration dropped. Source File: https://www.virtualinvestmentcentre.com/upm/branding/site.css Line: 1382
.error {
 background-color: #FFE9E9;
 border-color: red;
 color: maroon;
background-image: url(/upm/files/images//error1.png');
       
}

body {
   margin:79px 0 20px 0px; /*(header-height+buttonBar-height) 0 (footer-height) 0*/
   color:black;
   /*font-size:12px;  prevents user from choosing font size - this might break default positioning */
   font-size:x-small;
   font-family:Verdana,'Times New Roman',Arial;
   display:block;
  
}

Geändert am von cor-el