how to reset menu settings to default theme settings studio theme

Topic summary

A user encountered a menu issue where opening it caused the header logo to shift unexpectedly after making custom modifications. They sought guidance on reverting to default theme settings.

Solution Provided:

  • Add CSS code to assets/component-menu-drawer.css
  • Apply position: absolute !important; to .header__icon--menu class

Outcome:

  • The CSS fix successfully resolved the logo displacement issue
  • Discussion marked as resolved
Summarized with AI on November 1. AI used: claude-sonnet-4-5-20250929.

hello, ive messed up the menu with modifications and now when I open it it moves the header logo. can I go back the the theme settings and go from there? TIA

www.campomadero.com

1 Like

@HCM15

Please add the following css code to your assets/component-menu-drawer.css bottom of the file.

.header__icon--menu {
    position: absolute !important;
}

Thanks!

1 Like

it works thanks!