Click to See Complete Forum and Search --> : Menu Layers Made in FrontPage03 Don't Show Properly in Firefox


BioSmith
07-28-2006, 05:38 PM
Hello everyone!

I'm having a problem with layers on my webpage. I'm using FrontPage03 to build the page. I have created a menu with drop-down layers when buttons are mousedover. Everything has been positioned absolutely.

Here's the link for you to see it...
http://home.comcast.net/~biosmith/new_page_2.htm

:mad: When I preview my site in IE6.0, everything looks perfect. However, when I preview the page in Firefox, the red buttons are pushed down below the bottom boundary of the layer. And the drop-down menus then cover up part of the button when they appear.

:confused: Can someone take a look at the code and tell me where I need a fix?

I'm relatively new to web-building and this is frustrating the heck out of me.

Thanks!

bulkmar
08-02-2006, 06:57 PM
We are having issues also when using layers in FP2003! It is frustrating that I cannot control the visibility on layers with z-orders different from each other acting as TABS on teh webpage!

How can I use each TABS functioning as layers? I read about CSS in FP2003 but that it is not able to act as TABS either! :mad:

Here is the JS that is called when each tab is clicked on:

function FP_callJS(CVJS) {//v1.0
onclick="FP_changeProp(/*id*/'Contact',0,'style.visibility','hidden',div style="z-index: -1 ;")"
onclick="FP_changeProp(/*id*/'CV',0,'style.visibility','visible',div style="z-index: 50 ;")"
onclick="FP_changeProp(/*id*/'References',0,'style.visibility','hidden',div style="z-index: -1 ;")"
onclick="FP_changeProp(/*id*/'Report',0,'style.visibility','hidden',div style="z-index: -1 ;")"
onclick="FP_changeProp(/*id*/'Schedule',0,'style.visibility','hidden',div style="z-index: -1 ;")"
}
function FP_callJS(ReferenceJS) {//v1.0
onclick="FP_changeProp(/*id*/'Contact',0,'style.visibility','hidden')"
onclick="FP_changeProp(/*id*/'CV',0,'style.visibility','hidden')"
onclick="FP_changeProp(/*id*/'References',0,'style.visibility','visible')"
onclick="FP_changeProp(/*id*/'Report',0,'style.visibility','hidden')"
onclick="FP_changeProp(/*id*/'Schedule',0,'style.visibility','hidden')"
}
function FP_callJS(ReportJS) {//v1.0
onclick="FP_changeProp(/*id*/'Contact',0,'style.visibility','hidden')"
onclick="FP_changeProp(/*id*/'CV',0,'style.visibility','hidden')"
onclick="FP_changeProp(/*id*/'References',0,'style.visibility','hidden')"
onclick="FP_changeProp(/*id*/'Report',0,'style.visibility','visible')"
onclick="FP_changeProp(/*id*/'Schedule',0,'style.visibility','hidden')"
}
function FP_callJS(ScheduleJS) {//v1.0
onclick="FP_changeProp(/*id*/'Contact',0,'style.visibility','hidden')"
onclick="FP_changeProp(/*id*/'CV',0,'style.visibility','hidden')"
onclick="FP_changeProp(/*id*/'References',0,'style.visibility','hidden')"
onclick="FP_changeProp(/*id*/'Report',0,'style.visibility','hidden')"
onclick="FP_changeProp(/*id*/'Schedule',0,'style.visibility','visible')"
}
function FP_callJS(ContactJS) {//v1.0
onclick="FP_changeProp(/*id*/'Contact',0,'style.visibility','visible')"
onclick="FP_changeProp(/*id*/'CV',0,'style.visibility','hidden')"
onclick="FP_changeProp(/*id*/'References',0,'style.visibility','hidden')"
onclick="FP_changeProp(/*id*/'Report',0,'style.visibility','hidden')"
onclick="FP_changeProp(/*id*/'Schedule',0,'style.visibility','hidden')"
}
// -->
</script>