Tagged: Accordion, dropdown, dropdown menu, enfold
ISSUE
I wanted to use a dropdown menu on my site. When installing a javascript I ran into browser issues with popup blocker warnings.
SOLUTION
1- Instead, I found a solution by using a single accordion entry containing all links (one per line).
Toggle Title = “Please Select”
Toggle Content =
<a href="https://myURL.com">Your Link Text One</a>
<a href="https://myURL.com">Your Link Text Two</a>
<a href="https://myURL.com">Your Link Text Three</a>
<a href="https://myURL.com">Your Link Text Four</a>
<a href="https://myURL.com">Your Link Text Five</a>
<a href="https://myURL.com">Your Link Text Six</a>
<a href="https://myURL.com">Your Link Text Seven</a>
2- Then I added a scroll bar and view heigh via Quick CSS like this:
.toggle_content {
overflow: scroll !important;
height: 75px;
}
I’m just sharing – because there were several others asking for a dropdown method and this worked really well.
Enjoy!
Hey Julie,
Thanks for sharing the solution that worked for you, it’s much appreciated :)
Best regards,
Nikko