Accordion only works in Developer mode. jQuery problem?

HI.

I created an accordion nav on my page but it only works in Developer mode. Once I’m off that mode only some of the tabs work, but not all. Same with mobile view.

Is it my jQuery code?

My link is:
http://lolabernabe.com/module-14/

This is the accordion nav

:

Thank you!
Lola

They all seem to work fine for me, both full screen desktop view and in a smaller window.

What doesn’t work, exactly? What’s happening? The sections aren’t opening when clicked, or?

Hi,

At some page widths a transparent section of the carousel slider is overlapping the accordion and thus you can’t click some of the panels. Depending on the browser width you can click most of them or at smaller widths you can only click the last couple of panels.

Either hide the overflow on the carousel or perhaps more easily raise the z-index on the accordion.

e.g.

.accordion{
position:relative;
z-index:2;
}
2 Likes

Paul, thank you for looking at it! This worked. Thanks so much!

HI Jeffrey.

It worked on some browsers, partially, not all. Paul figured it out. Thanks for replying!

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.