Jump to content
xisto Community
Sign in to follow this  
saitunes

Html Page Not Showing Up In Firefox

Recommended Posts

Hi,

I've tried to make a webpage in HTML using the frameset tag. Here is the code of the webpage

<HTML>
<title> Sai's Makeshift Wiki</title>
<Body>
<Frameset rows="30%,70%">
<Frame src="LOCALHOST/~Sai/wiki/top.html" name="Menu">
<Frame src="LOCALHOST/~Sai/wiki/links.html" name="Frame2">
</Frameset>
</Body>
</HTML>


And it's not displaying in Firefox. (I mean is shows a blank page) It will show up in safari (I'm a mac user), all pages individually work on firefox, just not the above page. Any ideas as to why?

Thanks
Edited by saitunes (see edit history)

Share this post


Link to post
Share on other sites

You may want to try this out and see what happens, and I remember my frames correctly, you need an absolute path to your file and since your running this off your computer it would have to be something like this

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://forums.xisto.com/no_longer_exists/ xmlns="http://forums.xisto.com/no_longer_exists/ http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Untitled Document</title></head><frameset rows="30,70" frameborder="no" border="0" framespacing="0">  <frame src="file:///C|/Program Files/Adobe/Adobe Dreamweaver CS3/UntitledFrame-2" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />  <frame src="file:///C|/Program Files/Adobe/Adobe Dreamweaver CS3/Untitled-2" name="mainFrame" id="mainFrame" title="mainFrame" /></frameset><noframes><body></body></noframes></html>

or to shorten it up a bit it would look like this

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://forums.xisto.com/no_longer_exists/ xmlns="http://forums.xisto.com/no_longer_exists/ http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Untitled Document</title></head><frameset rows="30,70" frameborder="no" border="0" framespacing="0">  <frame src="../~Sai/wiki/top.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />  <frame src="../~Sai/wiki/links.html" name="mainFrame" id="mainFrame" title="mainFrame" /></frameset><noframes><body></body></noframes></html>

The same goes for your website you would want your source frames to look like this

<frame src="http://http://ww38.yoursite.com/frame1.html&%2334; name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />  <frame src="http://http://ww38.yoursite.com/frame2.html&%2334; name="mainFrame" id="mainFrame" title="mainFrame" />

Hopefully that helps connect your website together, and if you need any more help check this website out on frame sets and using frames.

Share this post


Link to post
Share on other sites
opinionHtml Page Not Showing Up In Firefox

I think frameset and body tags can not be used together.You may get your solution by changing that first. I haven't worked on Mac or safari so I can't say why it is working in that.

-reply by Aditya

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.