Join the AMA (Ask Me Anything) with Firefox leadership team to talk about Firefox priorities in 2024. Mark your calendar! Thursday, June 13, 17:00 - 19:00 UTC.

Pretraži podršku

Izbjegni prevare podrške. Nikad te nećemo tražiti da nas nazoveš, da nam pošalješ telefonski broj ili da podijeliš osobne podatke. Prijavi sumnjive radnje pomoću opcije „Prijavi zlouporabu”.

Learn More

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

  • 1 odgovor
  • 3 imaju ovaj problem
  • 1 prikaz
  • Posljednji odgovor od 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

Svi odgovori (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;
  
}

Izmjenjeno od cor-el