Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

iframe contents not displaying in FF Windows 7 or Mac

  • 2 trả lời
  • 4 gặp vấn đề này
  • 13 lượt xem
  • Trả lời mới nhất được viết bởi angel12333

more options

I've read almost all posts about frames not displaying in FF, however, I have an odd issue. While I am able to get the iframe to display, NOT ALL of its contents is displaying. It's odd. A sample page is below, click on the virtual tour tab and you will see what I mean. All the code does show up. This also happens for another page with similar type of code. This works fine in Chrome/IE both PC and Mac. Any help would be appreciated. Thanks

http://www.kdnovelties.com/educational/terrance-the-giraffe/personalized_293.html

I've read almost all posts about frames not displaying in FF, however, I have an odd issue. While I am able to get the iframe to display, NOT ALL of its contents is displaying. It's odd. A sample page is below, click on the virtual tour tab and you will see what I mean. All the code does show up. This also happens for another page with similar type of code. This works fine in Chrome/IE both PC and Mac. Any help would be appreciated. Thanks http://www.kdnovelties.com/educational/terrance-the-giraffe/personalized_293.html

Giải pháp được chọn

The content is there, but is hidden with display:none style rule, so it looks that if there is script running to show this content then it doesn't finish properly.

<div id="virtualbook" class="kdnbook" style="height: 465px; width: 680px; display: none; margin: auto;"></div>

Removing the display:none makes the book appear for me.

The Web Console also shows an error with the MP3 file:

HTTP "Content-Type" of "audio/mpeg" is not supported. Load of media resource http://26ebe445280acec2e3b0-023df79dc48add581f4e26895345aac6.r54.cf1.rackcdn.com/page-flip.mp3 failed.
Đọc câu trả lời này trong ngữ cảnh 👍 1

Tất cả các câu trả lời (2)

more options

Giải pháp được chọn

The content is there, but is hidden with display:none style rule, so it looks that if there is script running to show this content then it doesn't finish properly.

<div id="virtualbook" class="kdnbook" style="height: 465px; width: 680px; display: none; margin: auto;"></div>

Removing the display:none makes the book appear for me.

The Web Console also shows an error with the MP3 file:

HTTP "Content-Type" of "audio/mpeg" is not supported. Load of media resource http://26ebe445280acec2e3b0-023df79dc48add581f4e26895345aac6.r54.cf1.rackcdn.com/page-flip.mp3 failed.
more options

Cor-el, Thank you so much!!! I can't believe I did not see this. Remove that and it worked. Again, thank you so much!!!