I had a similar problem getting it to work on my framed in pages on
http://plugtrade.com
here was my solution:
http://plugtrade.com/plug/19.php
I ended up having to use jquery but in the end it looks like it all
works out. At least I think that's what you are talking about? Using
iframes and divs for the content and faking a frameset layout?
Make sure if you are doing this that you check for resizing (requires
jQuery):
<script>
$(document).ready(function() {
$('#main').css({'height'

($(window).height())-100)+'px'});
$(window).resize(function() {
$('#main').css({'height'

($(window).height())-100)+'px'});
});
});
$(document).ready(function(){
var iframe = $("#main")[0];
iframe.contentWindow.focus();
});
</script>
On 2/18/2006 9:27 AM, Joe Joe wrote:
> I am working on a site that requires one framed page to pull in careers from
> an outside source/vendor. Fixed top and bottom are my common header and
> footer. I have a css based drop navigation on top. I can't get it to go over
> top of the content frame in the middle. So for now I have set the header
> height to 200px. This causes a blank white area when you are not mousing
> over the nav and my longer drop downs are cut off by the frame below.
>
> Anyone know how to make my nav in the top frame lay over the top of my
> content or middle frame? I tried z-index but had no luck. I am using DW8 my
> 2 local pages I am pulling in are asp, the outside page is cfm. The site
> uses tables for layout structure at the request of the client.
>
> Any suggestions appreciated.
> J
>
>
--
Play Online Games For Free <http://plugtrade.com> - Celebrity Gossip
<http://insidefame.com>
>> Stay informed about: z-index on framed page - drop nav over content frame