Forums
This topic is locked
floating frame?
Posted 01 Mar 2005 22:52:15
1
has voted
01 Mar 2005 22:52:15 tony montana posted:
I have dreamweaver mx 2004, which i got as a present. i am trying to create a webpage with a floating frame in the middle. the other frames - top frame, left frame, bottom frame and right frame are going to have a white background with nothing in their.
However all my content is going to be displayed in the middle frame, hence the name floating frame.
Please can someone guide me on how to utilise this floating frame feature in dreamweaver mx 2004 as it is disabled.
Any help appreciated.
Thanks in advance.
Replies
Replied 02 Mar 2005 11:50:55
02 Mar 2005 11:50:55 Lee Diggins replied:
Hi Tony
What do you mean by floating fame?
Sharing Knowledge Saves Valuable Time!!!
~ ~ ~ ~ ~ ~
Lee Diggins - <i>DMXzone Manager</i>
<font size="1">[ Studio MX/MX2004 | ASP -> VBScript/PerlScript/JavaScript | SQL | CSS ]</font>
What do you mean by floating fame?
Sharing Knowledge Saves Valuable Time!!!
~ ~ ~ ~ ~ ~
Lee Diggins - <i>DMXzone Manager</i>
<font size="1">[ Studio MX/MX2004 | ASP -> VBScript/PerlScript/JavaScript | SQL | CSS ]</font>
Replied 02 Mar 2005 22:23:48
02 Mar 2005 22:23:48 Simon Martin replied:
I used to use frames like that to keep my page centred horizontally and vertically... but if that's what you're after then might I suggest you consider using CSS to achieve the same effect?
Live the life you love
Love the life you live
~ ~ ~ ~ ~ ~ ~
<b>Simon Martin</b> - <i>DMXzone Manager</i>
<font size=1>[ Dreamweaver MX/MX2004 | ASP | SQL | XHTML/CSS | Web Accessibility ] </font id=size1>
Live the life you love
Love the life you live
~ ~ ~ ~ ~ ~ ~
<b>Simon Martin</b> - <i>DMXzone Manager</i>
<font size=1>[ Dreamweaver MX/MX2004 | ASP | SQL | XHTML/CSS | Web Accessibility ] </font id=size1>
Replied 03 Mar 2005 02:12:40
03 Mar 2005 02:12:40 Dave Thomas replied:
yeah, frames are a pain in the butt.
CSS is the way to go for this, and it makes keeping it centered really easy.
if you post up the kind of sizes your were loking to have your floating frame at, i'll post the css and tell you how it works.
regards
Dave Thomas
<b>DMX Zone Manager</b>
CSS is the way to go for this, and it makes keeping it centered really easy.
if you post up the kind of sizes your were loking to have your floating frame at, i'll post the css and tell you how it works.
regards
Dave Thomas
<b>DMX Zone Manager</b>
Replied 03 Mar 2005 02:25:09
03 Mar 2005 02:25:09 tony montana replied:
Thank you guys for taking the time to reply.
I want to create frames so that the middle frame (floating frame) will show all the content.
left, right, top and bottom frames will all have a white background and will merely hold together the middle frame. The middle frame will be dissected into 2 vertical parts. The smaller left vertical part will display the navigation menu whilst the larger right vertical part will show the content depending on which navigation bar is selected.
I would say i am fairly literate to web design and really do want to try this with Dreamweaver but i am kind of struggling to do this.
Would it be advisable to further add 2 frames in place of the 2 vertical parts so as to save myself from adding the IFRAME command into the middle frame?
Hope i have made sense???
Thanks again.
TM
I want to create frames so that the middle frame (floating frame) will show all the content.
left, right, top and bottom frames will all have a white background and will merely hold together the middle frame. The middle frame will be dissected into 2 vertical parts. The smaller left vertical part will display the navigation menu whilst the larger right vertical part will show the content depending on which navigation bar is selected.
I would say i am fairly literate to web design and really do want to try this with Dreamweaver but i am kind of struggling to do this.
Would it be advisable to further add 2 frames in place of the 2 vertical parts so as to save myself from adding the IFRAME command into the middle frame?
Hope i have made sense???
Thanks again.
TM
Replied 03 Mar 2005 02:31:59
03 Mar 2005 02:31:59 tony montana replied:
Sorry, i forgot to post the html code. Here goes -
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="80,*,80" frameborder="NO" border="0" framespacing="0">
<frame src="toppage.htm" name="topFrame" scrolling="NO" noresize >
<frameset rows="*" cols="126,*" framespacing="0" frameborder="NO" border="0">
<frame src="leftpage.htm" name="leftFrame" scrolling="NO" noresize>
<frameset rows="*" cols="*,108" framespacing="0" frameborder="NO" border="0">
<frame src="centre.htm" name="mainFrame" frameborder="no">
<frame src="rightpage.htm" name="rightFrame" scrolling="NO" noresize>
</frameset>
</frameset>
<frame src="bottompage.htm" name="bottomFrame" scrolling="NO" noresize>
</frameset>
<noframes><body>
</body></noframes>
</html>
Really hope someone can help.
Thanks again.
TM
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="80,*,80" frameborder="NO" border="0" framespacing="0">
<frame src="toppage.htm" name="topFrame" scrolling="NO" noresize >
<frameset rows="*" cols="126,*" framespacing="0" frameborder="NO" border="0">
<frame src="leftpage.htm" name="leftFrame" scrolling="NO" noresize>
<frameset rows="*" cols="*,108" framespacing="0" frameborder="NO" border="0">
<frame src="centre.htm" name="mainFrame" frameborder="no">
<frame src="rightpage.htm" name="rightFrame" scrolling="NO" noresize>
</frameset>
</frameset>
<frame src="bottompage.htm" name="bottomFrame" scrolling="NO" noresize>
</frameset>
<noframes><body>
</body></noframes>
</html>
Really hope someone can help.
Thanks again.
TM