Lander theme menu change

Is there a way to have a static menu in the Lander theme? Rather than having to hit the icon next to menu, I’d like the menu to already be showing…

Ugly but worth a try… Add this to the javascript global code container:
document.getElementById("drop").click();

It ain’t ugly if it works! It does need a small tweak though. Put this into the Javascript tab in the Code settings in your project (in the left pane)

document.addEventListener("DOMContentLoaded", function(event) {
    document.getElementById("drop").click();
});

1 Like

D’oh! Of course… I’m so used to already being inside the ready state block. Thanks for the catch!

WOW!!! Thanks to you both for responding to my question so fast!
Joe, your tweak did it!

I’m thrilled.

1 Like

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