Drop Down Menu Dilemma Drop Down Menu Dilemma
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Drop Down Menu Dilemma

Started by Walkinman, December 04, 2007, 01:59:38 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Walkinman

hey Folks

I recently (and long overdue) changed my drop downmenus to a CSS thinig from Project 7, instead of the clumsy Dreamweaver javascript ones I had before. However, now, when the menu drops down over an image that appears in the bar under the breadcrumb, the menu is laid underneath the image. You can see what I mean here. If you scroll over the menu "nature", you'll see it disappears under the forward and backward arrows .. and it's not clickable either. Same thing with the menu on the left for "Portfolios" or "Contact". Is there something I can do make this work? It isn't affected, for example, if it drops down over the actual image being displayed, or thumbnails or anything like that, just those menu items.

I'd really appreciate some help, I can't make it work.

Thank you.

Cheers

Carl

dreams83

you can go to your CSS stylesheet and add a z-indez of like 100 or something to the:


/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is
assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#navbar li:hover ul, #navbar li.p7hvr ul {
display: block;
}


so it would be something like:


/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is
assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#navbar li:hover ul, #navbar li.p7hvr ul {
display: block;
z-index: 100;
}


Or something like that. See if that might help.

Walkinman

Hey Dreams,

Thanks you for the help.

I tried what you suggested, but it still seems to do the same thing.

I really know very little know about CSS and php, soI'm kinda lost. Any other ideas?

Thanks.

Cheers

Carl

Walkinman

Hey Dreams,

Whoops - cancel that! Looks like the browser hadn't totally refreshed things when I checked it out .. I'm looking at it in Firefox and safari, and both seem to display it all just fine. Thanks so much for your help, awesome!

Cheers

Carl

Joachim Müller

When changing your stylesheet, remember to force refresh your browser (usually [Ctrl]+[F5] should do the trick).
Quote from: Walkinman on December 05, 2007, 01:51:44 AM
I really know very little know about CSS and php
Not related to PHP - that's plain CSS.

Walkinman

Hey GauGau

Thanks - yes, I meant to say I'm not very well versed in EITHER css or php, so I didn't even know where to start.

I'm on a Mac .. Control + F5 turns on a voice command. Is there a difference between 'force refresh' and a basic 'refresh' (Control + 'R')?

Thanks.

Cheers

Carl

Joachim Müller

I have no idea about Macs. Read up the documentation that comes with your browser and OS to figure out how a force-refresh is performed.