Be a Supporter!

I need help with html

  • 730 Views
  • 6 Replies
New Topic Respond to this Topic
Notorius
Notorius
  • Member since: Feb. 18, 2000
  • Offline.
Forum Stats
Member
Level 31
Blank Slate
I need help with html 2001-12-21 16:52:06 Reply

I'm not sure if it's realy html but, what I want is that my site will be dived in to 2 windows. I found some html (it doesn't look like that but I couldn't write it more aqurate because no html allowed here)
<frameset cols="18%,82%">
<frame src="menu.html" name="menu" noresize scroling="no">
<frame src="main.html" name="main" scroling="yes">
</frameset>
but that makes a line between those two windows, what I want is that there is no one line, it should look like on whole site, any ideas?

liljim
liljim
  • Member since: Dec. 16, 1999
  • Offline.
Forum Stats
Staff
Level 28
Blank Slate
Response to I need help with html 2001-12-22 12:46:51 Reply

At 12/21/01 04:52 PM, Notorius wrote: but that makes a line between those two windows, what I want is that there is no one line, it should look like on whole site, any ideas?

Put this in to each of the frame attributes: frameborder="0"

Learn more here.

Falconrath
Falconrath
  • Member since: Sep. 2, 2001
  • Offline.
Forum Stats
Member
Level 11
Programmer
Response to I need help with html 2001-12-29 00:04:26 Reply

At 12/21/01 04:52 PM, Notorius wrote: I'm not sure if it's realy html but, what I want is that my site will be dived in to 2 windows. I found some html (it doesn't look like that but I couldn't write it more aqurate because no html allowed here)
<frameset cols="18%,82%">
<frame src="menu.html" name="menu" noresize scroling="no">
<frame src="main.html" name="main" scroling="yes">
</frameset>
but that makes a line between those two windows, what I want is that there is no one line, it should look like on whole site, any ideas?

I dunno much about that, use dreamweaver for it.

I need help with html

REZN8
REZN8
  • Member since: Dec. 11, 2000
  • Offline.
Forum Stats
Member
Level 22
Blank Slate
Response to I need help with html 2001-12-29 16:07:07 Reply

At 12/21/01 04:52 PM, Notorius wrote: I'm not sure if it's realy html but, what I want is that my site will be dived in to 2 windows. I found some html (it doesn't look like that but I couldn't write it more aqurate because no html allowed here)
<frameset cols="18%,82%">
<frame src="menu.html" name="menu" noresize scroling="no">
<frame src="main.html" name="main" scroling="yes">
</frameset>
but that makes a line between those two windows, what I want is that there is no one line, it should look like on whole site, any ideas?

I wouldn't use <frameset cols="18%, 82%">, instead use something like <frameset cols="150, *"> The reason is that incase your menu is wider than 115. If someone browses your site with 640x480 then they are going to have to side-scroll your menu frame, very bad. Also, incase someone happens to be using a bigger resolution, like 1024x768 or 1200x800, then your menu is going to be wider than intended and may not look good. You should always use a constant width when working with your menu frame. Good luck!

Skit-666
Skit-666
  • Member since: Nov. 4, 2001
  • Offline.
Forum Stats
Member
Level 03
Blank Slate
Response to I need help with html 2002-01-01 12:05:04 Reply

<*br*> No *
Goes onto the next line

PS : First Post :)

VengeanceTool
VengeanceTool
  • Member since: Dec. 10, 2001
  • Offline.
Forum Stats
Member
Level 07
Blank Slate
Response to I need help with html 2002-01-05 22:14:27 Reply

Well, on one of my sites that im workin' on it has 2 frames. One at the top and one at the bottom. The top frame is called "top.html" and my bottom one was called "home.html" i put the following html script inside of a page called "index.html". Put this part above the body html:

<frameset framespacing=0 frameborder=0 border=0 rows="20%,1*">
<frame name=Frame2 src=top.html noresize style='mso-linked-frame:auto'>
<frame name=Frame1 src=home.html style='mso-linked-frame:auto'>
<noframes>

Than after the body down where the body and html end put this part in:

</noframes>
</frameset>

This will make your index have a top frame and a bottom frame. any questions post back.

pauliojr
pauliojr
  • Member since: Nov. 14, 2001
  • Offline.
Forum Stats
Member
Level 16
Blank Slate
Response to I need help with html 2002-01-17 21:35:44 Reply

do what the second guy said