חיפוש בתמיכה

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Why does my website, http://ironstonerealtyconsultants.com/, not display properly on Firefox?

  • 3 תגובות
  • 16 have this problem
  • 16 views
  • תגובה אחרונה מאת 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.

פתרון נבחר

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>
Read this answer in context 👍 0

כל התגובות (3)

more options

פתרון נבחר

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>

השתנתה ב־ על־ידי cor-el

more options

Thank you.

השתנתה ב־ על־ידי mark.hooper