Hello, can somebody help me please change the text from Black to white, remove the top padding and change the background to match the theme’s gradient color please? Pictures for refference. Website link :https://senpaisstash.com/
Topic summary
A user seeks help customizing their Shopify collection page with three specific requests:
- Change text color from black to white
- Remove top padding
- Update background to match the theme’s gradient
They provided a reference image showing the current page layout.
Proposed Solution:
Another user (EBOOST) offered CSS modification steps:
- Navigate to: Online Store → Themes → Edit Code
- Locate the
base.cssfile in Assets - Add CSS targeting the specific section ID to adjust color, width, and float properties
The response includes a screenshot demonstrating where to find the code editor. However, the CSS snippet and some technical details appear garbled in the original text, which may require clarification for proper implementation.
Status: Solution proposed but awaiting confirmation of successful implementation.
1 Like
Hi @963b ,
May I suggest to update code these steps:
- Go to Store Online-> theme → edit code
- Assets/base.css
- Add code below to end of file
#shopify-section-template--23868019966301__main{
float: left;
width: 100%;
--color-foreground: 255,255,255;
}

