Turbo Dubai remove logo from header and change position of button in Slide

Topic summary

Main issues: remove the homepage header logo (including alt text) in the Turbo Dubai theme, and change the position of the Slide section button. Also asked if replacing the Slide with an Image plus overlay button is better.

  • A helper asked for the store URL; it was shared.
  • Suggested approach: add CSS to hide the logo and edit the theme to reposition the button by adding code near in theme.liquid. (Actual code content wasn’t provided in the thread.)
  • Result: That approach didn’t work for the OP. They resolved it with custom CSS:
    • .header__logo { display: none; } to hide the logo (removing visible alt text as well).
    • .button-grid-container { position: absolute; } to adjust the button’s placement.

Status and open points:

  • Logo removal is effectively handled via CSS.
  • Button positioning is addressed via absolute positioning, but no detailed guidance or theme-level solution was finalized.
  • The question about switching to an Image with an overlay button remains unanswered. Code snippets are central to the resolution shared.
Summarized with AI on January 13. AI used: gpt-5.

unluckily that didn’t work.

I ended up using this for the header:

.header__logo {
  display: none;
}

and

.button-grid-container {
  position: absolute;
}

for the button