Results 1 to 2 of 2
Related
-
Hello! But help (safari/webkit users only) Forum: HTML Forum
Replies: 0 -
Safari Shutdown Forum: Javascript Forum
Replies: 1 -
Alignment in Safari Forum: CSS Forum
Replies: 3 -
Layout problem on Safari (Mac) Forum: CSS Forum
Replies: 3 -
Aligning iframe to display in different browsers? Forum: HTML Forum
Replies: 9
-
08-26-2010, 05:56 AM #1
Iframe won't display in safari :(
Hi all, I am constructing a player which uses iframes. Everything works fine in IE, but in safari one of the iframes won't display. I've tried removing the "transparency="true" script but that dosn't help, and means it then won't display properly on IE.
You can seee it at www.joegilbertdesign.co.uk/player/player.htm
Many Thanks
-
08-26-2010, 02:13 PM #2bald headed old fart
Status- Offline
Join Date- Aug 2003
Location- chertsey, a small town 25 miles south west of london, england.
Posts- 739
Re: Iframe won't display in safari :(
Hi there dt86,
and a warm welcome to these forums.
Your problems are caused by poor coding skills.
The urls that you are using have been badly formed.
They contain back slashes instead of forward slashes.
One of your folder names has a space in it.
So you should change this...
Code:/player/video pages\video.htm
Code:/player/video-pages/video.htm
Code:/player/carousel\examples\static_vertical.html
Code:/player/carousel/examples/static_vertical.html
video pages...to...
video-pages
As for your coding, if you want to keep you problems to a minimum, then start using a basic template for your pages.
I use this one...
Code:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="language" content="english"> <meta http-equiv="Content-Style-Type" content="text/css"> <meta http-equiv="Content-Script-Type" content="text/javascript"> <title></title> <style type="text/css"></style> <script type="text/javascript"></script> </head> <body> <div> </div> </body> </html>