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?
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:
-
First fix - Add to
base.css:- Align content to bottom using
align-items: end - Remove background with
background: transparent
- Align content to bottom using
-
Desktop refinement - Add to
section-image-banner.css:- Additional alignment code for proper bottom positioning
-
Mobile fix - Update
base.csscode:- Add
position: absoluteto resolve mobile display issue
- Add
Outcome:
The desktop version was successfully fixed. A mobile display issue emerged but was addressed with additional CSS adjustments. The discussion appears resolved.
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?
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
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



