go41

Re: dropdown menu disappears behind jdGallery :: Reply by nuphoria

von Joern am 8. Okt. 2011 | Keine Kommentare

Hi Joern,
Having similar issues.
My site: http://nu-phoria.com/
Im currently using Twenty Eleven theme and have got the WP Featured Content Slider below the navigation menu. If you look at the category "DJ Sets", the last sub-category is going behind the Slider. I tried to edit the z-index as you mentioned above but doesn’t seem to do anything.
Here is the menu coding which i edited from style.css

[/code]
#access ul {

font-size: 13px;

list-style: none;

margin: 0 0 0 -0.8125em;

padding-left: 0;

}

#access li {

float: left;

position: relative;

z-index: +30[u];

}

#access a {

color: #eee;

display: block;

line-height: 3.333em;

padding: 0 1.2125em;

text-decoration: none;

}

#access ul ul {

-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);

-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);

box-shadow: 0 3px 3px rgba(0,0,0,0.2);

display: none;

float: left;

margin: 0;

position: absolute;

top: 3.333em;

left: 0;

width: 188px;

z-index: 99999;

}

#access ul ul ul {

left: 100%;

top: 0;

}

#access ul ul a {

background: #f9f9f9;

border-bottom: 1px dotted #ddd;

color: #444;

font-size: 13px;

font-weight: normal;

height: auto;

line-height: 1.4em;

padding: 10px 10px;

width: 168px;

}

#access li:hover > a,

#access ul ul :hover > a,

#access a:focus {

background: #efefef;

}

#access li:hover > a,

#access a:focus {

background: #f9f9f9; /* Show a solid color for older browsers */

background: -moz-linear-gradient(#f9f9f9, #e5e5e5);

background: -o-linear-gradient(#f9f9f9, #e5e5e5);

background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9f9f9), to(#e5e5e5)); /* Older webkit syntax */

background: -webkit-linear-gradient(#f9f9f9, #e5e5e5);

color: #373737;

}

#access ul li:hover > ul {

display: block;

}

#access .current_page_item > a,

#access .current_page_ancestor > a {

font-weight: bold;

}

(von: nuphoria)

Hier noch 15 weitere Ergebnisse dieses Threads:

dropdown menu disappears behind jdGallery

3. Sep. 2009 (von: master)

you work on a site using jdGallery (myGallery) or any Dynamic Content Gallery your drop down menu might not display. I looks like it's behind the gallery.The dropdown menu is working, however it goes behind your featured content gallery!Using the…

Re: dropdown menu disappears behind jdGallery :: Reply by Annie

22. Sep. 2011 (von: Annie)

Hi Joern!I have this problem. The first 5 lines work, after that it goes "behind".I have tryed to do what you recomend here, but it dosn´t help.You see my drop-down menu on style.css here, what should I do?Best regards Annie/*…

Re: dropdown menu disappears behind jdGallery :: Reply by Joern

22. Sep. 2011 (von: Joern)

Annie, I can't see your site, get redirected to login..Anyway, I had a look at colorlabs arthemia-premium demo. There they have these #page-bar .. entries in style.css, but the menu on top is not in a div page-bar so the…

Re: dropdown menu disappears behind jdGallery :: Reply by Annie

24. Sep. 2011 (von: Annie)

sorry, now you see it here: www.familjan.fo Weiterlesen →

Re: dropdown menu disappears behind jdGallery :: Reply by Joern

24. Sep. 2011 (von: Joern)

very difficult, it's late now, maybe it helps to change in madmenu.css this entry:#madmenu li ul ul { margin: -26px 0 0 154px; }to#madmenu li ul ul { margin: -26px 0 0 154px; width: 154px; }somehow the sooperfish.js writes after…

Re: dropdown menu disappears behind jdGallery :: Reply by Annie

25. Sep. 2011 (von: Annie)

Hi Joern!Neither worked Thanks anyway!Annie Weiterlesen →

Re: dropdown menu disappears behind jdGallery :: Reply by Joern

25. Sep. 2011 (von: Joern)

I hope you refreshed the browser nore than once only, the browser might cache css or .js files and values.two more things you might try1. in jquery.sooperfish.jschange:dualColumn : 6, //if a submenu has at least this many items it will…

Arthemia background image

3. Okt. 2011 (von: ysan)

Hi,First of all... this is a GREAT website. It has helped me a lot in my quest to change the Arthemia WP theme. This should be an easy question : How to put a background image in the Arthemia theme.…

Re: Arthemia background image :: Reply by master

3. Okt. 2011 (von: master)

Hi Y..a background image for body should display 'around' your site.see one of my last Arthemia sites http://www.rcnetz.comIt's using in style.css this:body{font:100% Arial,Helvetica,sans-serif; background:#FFF url(images/bodybg.jpg) repeat-y center to... Weiterlesen →

Re: Arthemia background image :: Reply by ysan

3. Okt. 2011 (von: ysan)

Hi Joern,this is my codeCode:body {   font: 100% Arial, Helvetica;   background: #fff url(images/background.jpg) center center;   color: #333;   }and it seems to work. I must have done something wrong (my first w... Weiterlesen →

Re: dropdown menu disappears behind jdGallery :: Reply by master

8. Okt. 2011 (von: master)

Hi, it looks like you moved the slider up above the menu bar.that's a solution, but now the slider covers your header (title and description) , which is still loading but not to see.you should not put that code into…

Re: dropdown menu disappears behind jdGallery :: Reply by nuphoria

13. Okt. 2011 (von: nuphoria)

Hi,Thanks for having a look at the site. I have used the third option n posted it below the site title. However i still have one problem (a little off topic): when the site is loading, the content of the…

Re: dropdown menu disappears behind jdGallery :: Reply by Joern

13. Okt. 2011 (von: Joern)

I realized that. Looking on the source-code of your site I see that the css for #featured_slider is loading very late. Actually jquery expects to get the styles before it can modify it.So by using jQuery to modify CSS, you…

Re: dropdown menu disappears behind jdGallery :: Reply by nuphoria

13. Okt. 2011 (von: nuphoria)

Hi Joern,Thanks for your prompt reply. I used the overflow:hidden command and it works like a peach. Thanks alot! I'm new to these sort of coding, so your help is really appreciated. Are you able to assist with Facebook plugins?…

Re: dropdown menu disappears behind jdGallery :: Reply by Joern

13. Okt. 2011 (von: Joern)

I got no idea about facebook plugins ..did you get how dead-slow your site is loading? One reason is this likebox plugin.(Caching will not help with scripts loading lot's of stuff externally)With a plugin like this you transfer your traffic…

Autor:

Du findest mich auch auf Twitter und Facebook!

Schreibe einen Kommentar

Pflichtfelder sind mit * markiert.


Diese Website verwendet Akismet, um Spam zu reduzieren. Erfahre mehr darüber, wie deine Kommentardaten verarbeitet werden.

weitere forum Beiträge: