Remove Button Background

Topic summary

A user seeks help removing a white background box from a “Shop All” button on their banner and repositioning it to the bottom.

Initial Request:

  • The button appears centered with a large white box background
  • Goal: Remove background and move button to bottom of banner
  • Store URL: www.peakclo.com (password: LaunchVIP)

Solution Provided:
Multiple helpers requested store access. EstherBui provided CSS code modifications:

  1. First fix - Add to base.css:

    • Align content to bottom using align-items: end
    • Remove background with background: transparent
  2. Desktop refinement - Add to section-image-banner.css:

    • Additional alignment code for proper bottom positioning
  3. Mobile fix - Update base.css code:

    • Add position: absolute to resolve mobile display issue

Outcome:
The desktop version was successfully fixed. A mobile display issue emerged but was addressed with additional CSS adjustments. The discussion appears resolved.

Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

www.peakclo.com

How can I remive the large white box around the shop all button on my banner and reposition the button to the bottom of the banner?

2 Likes

Hi @peakclo ,

Can you share what the password is to view the store page? Also is this a custom page or something built-in from your theme?

Hello @peakclo

Please share with me store password.

Hi, please share password

Hi @peakclo

Please, share your store password. Thanks!

LaunchVIP

LaunchVIP

Hi Peakclo

  • You can try to follow this step
    Step 1: Go to Edit code
    Step 2: Find file base.css and add this code at the end of the file
.banner__content.banner__content--middle-center.page-width {
  align-items: end !important;
}

.banner__box.content-container.content-container--full-width-mobile.color-scheme-1.gradient {
    background: transparent !important;
}

Result:

Best,
Esther

For me it is still in centre and not bottom centre

Hi
Find file section-image-banner.css and add this code at the end of the file

.banner__content.banner__content--middle-center.page-width {
    align-items: end !important;
}

This works for desktop thanks, for mobile it now looks like this

.banner__content.banner__content–middle-center.page-width { align-items: end !important; }

You edit that code in base.css file

.banner__box.content-container.content-container--full-width-mobile.color-scheme-1.gradient {
    background: transparent !important;
    position: absolute;
}

Hi @peakclo Happy to see your problem is solve