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 my website, http://ironstonerealtyconsultants.com/, not display properly on Firefox?

  • 3 Antworten
  • 16 haben dieses Problem
  • 20 Aufrufe
  • Letzte Antwort von cor-el

more options

The logo on my website does not display in the center like on IE.

The logo on my website does not display in the center like on IE.

Ausgewählte Lösung

You do not have code for Firefox to display that Flash object.
Firefox ignores an object if it has a classid.

You need to add code for Firefox with type="application/x-shockwave-flash" as well.

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="980" height="342" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,24">
<param name="movie" value="/images/stories/header_v8.swf" />
<param name="quality" value="high" />
<param name="menu" value="false" />
<param name="wmode" value="transparent" />

 <!--[if !IE]>-->
 <object data="/images/stories/header_v8.swf" width="980" height="342" type="application/x-shockwave-flash">
<param name="quality" value="high" />
<param name="menu" value="false" />
<param name="wmode" value="transparent" />
  </object>
 <!--<![endif]-->

</object>
Diese Antwort im Kontext lesen 👍 0

Alle Antworten (3)

more options

Ausgewählte Lösung

You do not have code for Firefox to display that Flash object.
Firefox ignores an object if it has a classid.

You need to add code for Firefox with type="application/x-shockwave-flash" as well.

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="980" height="342" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,24">
<param name="movie" value="/images/stories/header_v8.swf" />
<param name="quality" value="high" />
<param name="menu" value="false" />
<param name="wmode" value="transparent" />

 <!--[if !IE]>-->
 <object data="/images/stories/header_v8.swf" width="980" height="342" type="application/x-shockwave-flash">
<param name="quality" value="high" />
<param name="menu" value="false" />
<param name="wmode" value="transparent" />
  </object>
 <!--<![endif]-->

</object>

Geändert am von cor-el

more options

Thank you.

Geändert am von mark.hooper

more options

You're welcome