Click to See Complete Forum and Search --> : hey webdevelopers..My site needs developing..or recession
secure
10-25-2003, 07:11 AM
What should I do to show iframes to all other users which are using old browser that does not support iframes? I need to find something diffrent to let all the ppl able to see my site properly. Could someone please help me ? I am working on that site since very long time ago but I got freeze on those iframes and I can not go forward. Do you have any idea&input&comment?
here is my site
www.balkanoglu.com/index.php
Vladdy
10-25-2003, 07:27 AM
Design in (X)HTML Strict. No need for frames of any kind for your site.
DaveSW
10-25-2003, 10:39 AM
to make an iframe accessible just include a hyperlink between the iframe tags
<iframe src="hello.htm" style="width:200px; height:200px;" name="myiframe">
<a href="hello.htm">Your browser does not support inline frames. Please click here to view the page</a>
</iframe>
If there are links on your page to open in an iframe (where the browser doesn't support them,) they will simply open in a new window.