Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Frame Borders 1

Status
Not open for further replies.

stevenr

Technical User
Feb 21, 2001
89
GB
I am trying to make a main page using frames, my problem is that i always get the annoying seperator bar, is their a code to stop this?

The code i've used so far is below, Cheers


<HTML>
<HEAD>
<TITLE>Maxitrade Shopping Mall</TITLE>
</HEAD>

<FRAMESET COLS=&quot;10%,90%&quot;>

<FRAME SRC=&quot;Links.htm&quot;>
<FRAME SRC=&quot;C1301.htm&quot;>
</FRAMESET>
</HTML>
 
Just make the following alteration:

<HTML>
<HEAD>
<TITLE>Maxitrade Shopping Mall</TITLE>
</HEAD>

<FRAMESET FRAMEBORDER=&quot;0&quot; COLS=&quot;10%,90%&quot;>

<FRAME SRC=&quot;Links.htm&quot;>
<FRAME SRC=&quot;C1301.htm&quot;>
</FRAMESET>
</HTML>

Mise Le Meas,

Mighty :)
 
What code do i need to insert a horizontal line jpg file into where the frame border should be.
 
You can just include the image in the bottom of the page that appears in the top frame. Mise Le Meas,

Mighty :)
 
Hi, I hate to bring this up again but I cannot seem to get rid on the frame borders on my page. I think I have tried everything yet they still remain. can anyone help?

Here's my code.

<frameset rows=&quot;75,*&quot; frameborder=&quot;0&quot;>
<frameset cols=&quot;100%,*&quot; frameborder=&quot;0&quot;>
<frame name=&quot;logo&quot; src=&quot;site/header3.cfm&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; noresize>

</frameset>
<frameset cols=&quot;110,*&quot; frameborder=&quot;0&quot;>
<frame src=&quot;site/leftback.cfm&quot; name=&quot;menu&quot; id=&quot;menu&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; noresize marginwidth=&quot;0&quot; marginheight=&quot;0&quot;>

<frameset cols=&quot;100%,*&quot; frameborder=&quot;0&quot;>
<!--- <frameset cols=&quot;81%,*&quot;> --->
<frameset rows=&quot;100%,*&quot; frameborder=&quot;0&quot;>
<frame src=&quot;site/intro.cfm&quot; name=&quot;main&quot; id=&quot;main&quot; frameborder=&quot;0&quot; scrolling=&quot;No&quot; noresize marginwidth=&quot;0&quot; marginheight=&quot;0&quot;>

</frameset>

</frameset>
</frameset>

Thanks in advance.

Mike
 
You seem to have your frameset messed up. Should it be like this:

<frameset rows=&quot;75,*&quot; frameborder=&quot;0&quot;>

<frame name=&quot;logo&quot; src=&quot;site/header3.cfm&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; noresize>

<frameset cols=&quot;110,*&quot; frameborder=&quot;0&quot;>
<frame src=&quot;site/leftback.cfm&quot; name=&quot;menu&quot; id=&quot;menu&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; noresize marginwidth=&quot;0&quot; marginheight=&quot;0&quot;>

<frame src=&quot;site/intro.cfm&quot; name=&quot;main&quot; id=&quot;main&quot; frameborder=&quot;0&quot; scrolling=&quot;No&quot; noresize marginwidth=&quot;0&quot; marginheight=&quot;0&quot;>
</frameset>

</frameset>

This would give you a top frame, a left frame and then a main frame. Is that what you are looking for?? Mise Le Meas,

Mighty :)
 
Yes the three pane window is what I'm looking for. I copied your code into a new page and replaced the linked pages with a blank page with only a background color assigned and still the borders remain. Does this code work in your environment?

Mike
 
In my environment (IE5 on NT4), I don't see any borders with this code. Mise Le Meas,

Mighty :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top