NO BUG: Structure Panel doesn't open

I’m not sure if this is a bug,
but the structure panel is closed and won’t open, the toggle icons are not showing either.

I’d appreciate some help with this situation
Thank you.

I came across this post, and tried the solution, but it didn’t work.

Since then I noticed that other things such as header not showing in editor, part of section hiding under another section. On the front end header is not sticky anymore despite the setting.

Browser: Chrome 110
OS: macOS / Windows / Linux / etc.
URL: Link to a page that illustrates this issue
Video: Short screen recording that illustrates this issue (free tool: jam.dev)

[Please describe this bug in as much detail as possible so we can replicate & debug this bug]

Hi Kaoru,
Thanks so much for your report!

No idea what’s going on, but the first attempt would be disabling all plugins without exception. If it works, enable one after the other to find the culprit.

Best regards,
timmse

Thank you for your advice.
I used your method and figured out it was a code snippet I placed.

I was trying to stop the page from scrolling horizontally.
Could you tell me which part of this code is wrong?


/* Prevent horizontal scroll */
html, body {
overflow-x: hidden;
}

/* Also make sure all children do not exceed the viewport width */

  • {
    box-sizing: border-box;
    }

body {
max-width: 100vw;
overflow-x: hidden;
}

/* Handle rogue elements with absolute/fixed positions or large widths /
[class
=“bricks”] {
overflow-x: hidden;
}

Well, generally speaking, everything about it, as this, of course, also affects the builder.
You should avoid such general rules and solve specific overflow problems individually instead of using a sledgehammer or generic rules.

OK, I’ll try my best.
Thank you for your help!

1 Like