I am using the top navigation II menu from brainjar found at dynamicdrive.com . When the page has a form with a drop down box, the horizontal menu goes under the drop down? In other words it is not visible. Does anyone know a solution for this problem ? It should be a solution that works in Netscape as well as in IE.
__________________
"In order to really enjoy a dog, one doesn’t merely try to train him to be semihuman. The point of it is to open oneself to the possibility of becoming partly a dog." — Edward Hoagland
don't feel bad - the problem I have is that I can't figure out how to USE the #@$&%^* thing - you may have noticed me in the breakdown lane with the hood up on this page tryin' to get the dd menus on the right to display in the same space - seems like z-index is the trick - y'all don't really want the Design Review mod looking foolish like this, do you?
__________________
"In order to really enjoy a dog, one doesn’t merely try to train him to be semihuman. The point of it is to open oneself to the possibility of becoming partly a dog." — Edward Hoagland
Last edited by caislander : 06-03-2006 at 07:21 PM.
unfortunately, I managed to hide the true "meaning" of my post - I want those lists to display in the same space - I haven't been able to pull it off - as they say in this biz, PLLEEEEAAAASSSSSEEEEE HELP, i.e., write the code for me
__________________
"In order to really enjoy a dog, one doesn’t merely try to train him to be semihuman. The point of it is to open oneself to the possibility of becoming partly a dog." — Edward Hoagland
Sorry mmi, been offline formatting my hard drive for fun
I would suggest that you put the class ".contentArea1" to ".contentArea" and make it the class name for both divs. Make the position absolute instead of relative and make the top and left the same. Give each div an inline style attribute of z-index:0 then toggle the zIndex in a function thus:
Code:
function toggleOn(e){
var e = document.getElementById(e.id);
el.style.zIndex = 1;
}
function toggleOff(e){
var e = document.getElementById(e.id);
el.style.zIndex = 0;
}
jeez, I tried most 'a this stuff in different combinations but never put it all together - I was actually making SLOW progress on figuring this out and would have gotten it in another year or two - IOU one
__________________
"In order to really enjoy a dog, one doesn’t merely try to train him to be semihuman. The point of it is to open oneself to the possibility of becoming partly a dog." — Edward Hoagland
I really appreciate your help on this diades, but in applying your solution, I seem to run into the same problem I've been having all along - namely, the positioning - if I set these as absolute values, won't they be "misplaced" when viewed at varying screen resolutions? - if this stuff were up against a left margin, I think I could do what I want easily enough - my problem seems to be (I may be wrong) that I'm trying to reach across a "center column" that is set up to vary its width to fill the screen - maybe I just need to redesign the page, but I'm thinking there must be SOME way of dealing with this
__________________
"In order to really enjoy a dog, one doesn’t merely try to train him to be semihuman. The point of it is to open oneself to the possibility of becoming partly a dog." — Edward Hoagland
lookin' good so far, but I'm not getting a display in N4.7 - I'm using this page to troubleshoot the change - N doesn't like the condition
Code:
if (divCheck == divShow) document.layers[divShow].visibility = visible;
producing
Code:
document.layers[divShow] has no properties
- IE was doing the same thing on its line at first - I changed the div id's back to area_1 and area_2 and it was satisfied - N still doesn't like it - [just to be clear, having them both with id="area_1" didn't help N; it simply caused IE to fail] - so it seems like I need to label these divs in a way that N likes - I really appreciate your help, diades, in getting this done - it's been buggin' me - hopefully, a nomenclature that satisfies N's exacting standards will somehow become known to me
__________________
"In order to really enjoy a dog, one doesn’t merely try to train him to be semihuman. The point of it is to open oneself to the possibility of becoming partly a dog." — Edward Hoagland
Last edited by caislander : 06-03-2006 at 07:22 PM.