Closed Thread Icon

Preserved Topic: Overlapping Frames (Page 1 of 1) Pages that link to <a href="https://ozoneasylum.com/backlink?for=20491" title="Pages that link to Preserved Topic: Overlapping Frames (Page 1 of 1)" rel="nofollow" >Preserved Topic: Overlapping Frames <span class="small">(Page 1 of 1)</span>\

 
Minkies
Bipolar (III) Inmate

From: Johannesburg, Gauteng, South Africa
Insane since: Jan 2001

posted posted 04-23-2002 14:16

Hi all...

Iv'e never had a problem with frames before as i never had to "overlap" them before - Ive got a head frame and a body frame

in the head.html page there is a javascript menu (mouseover, drop down menu with links) - thats working fine (when on its own)
The height of the head is 100 pixels, the body frame is the remainder- when i look at the index file with both frames, i can see the main links - but when i put my mouseover it, it hides behind the body frame....how do i get the head frame to overlap the body frame so that i can see the links when i mouse over

HTML below

<HTML>
<HEAD>
<TITLE>test</TITLE>
<frameset framespacing="0" border="0" rows="100,*" frameborder="0">
<frame name="top" scrolling="no" noresize src="head.html" target="middle">
<frame name="middle" src="top.html" scrolling="auto" noresize>
</HTML>

THANKS IN ADVANCE


I try to take just one day at a time but lately several days have attacked me at once !

DmS
Paranoid (IV) Inmate

From: Sthlm, Sweden
Insane since: Oct 2000

posted posted 04-23-2002 15:24

Quite simple, you don't...
Remember, a frameset with a top and a bottom is actually three html pages.
One, the frameset itself that the browser reads, in this case the browser is informed to show page A at the top of the browser, and page B in the bottom.

So, if you have a menu on page A that shows a hidden layer on the same page you cannot make the layer overlap the "edges" of the frame.

What you need to do is basically this, if you want the script and the links to be in the top frame and the dropdown to show on the bottom page, you need to move the layer that will be shown by the link from the top page to the bottom page and then, in your script, point to the page that contains the layer. Basically say: "show the layer X that sits on page B" in your script (don't remember the code right off).
That's the essence of the solution.
/Dan



-{ a vibration is a movement that doesn't know which way to go }-

Suho1004
Maniac (V) Inmate

From: Seoul, Korea
Insane since: Apr 2002

posted posted 04-23-2002 15:28

You could always go CSS if you want stuff overlapping. But I guess that wouldn't be plain HTML anymore...

kuckus
Bipolar (III) Inmate

From: Berlin (almost)
Insane since: Dec 2001

posted posted 04-28-2002 17:10

But, as DmS stated, nothing, not even CSS, can overlap things which aren't in the same HTML file (= the same layer).

kuckus

magicaldog
Obsessive-Compulsive (I) Inmate

From: Malmö, Sweden
Insane since: Apr 2002

posted posted 04-28-2002 22:19

Hi Minkies
This is how I solved that problem with crossing frames in Dreamweaver .

here is the project http://www.dsr-travel.dk

I used an extension called "Persistent Layer" (to keep the layers fixed) that were loaded in the main frame"stageFrame".

It worked for me, maybe you can use something from this.

jedart
Bipolar (III) Inmate

From: Las Vegas
Insane since: Oct 2001

posted posted 04-30-2002 06:09

Very clever magicaldog, I wouldn't have thought of that. It may not be possible to cause a layer to break out of a frame, but you workaround seems to do the trick.

Me Again?

Minkies
Bipolar (III) Inmate

From: Johannesburg, Gauteng, South Africa
Insane since: Jan 2001

posted posted 05-02-2002 15:00

Woohoo...you're a honey....thanks magicaldog....

BIG cookie for you.....
(now that sounds bad)


I try to take just one day at a time but lately several days have attacked me at once !

« BackwardsOnwards »

Show Forum Drop Down Menu