Hi there,
How do I remove the white background and Shop all button here https://postimg.cc/5HmNWFpP
This is the website: https://aromall.co.uk/ , I am using the Refresh Shopify theme.
Thank you!
Hi @NK9089
This the container of the title in your banner. What I did I make it transparent.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.slideshow__text.banner__box.content-container.content-container--full-width-mobile.color-background-2.gradient.slideshow__text--right.slideshow__text-mobile--right {
background: transparent;
}
- And Save
- Do you like to change in the mobile screen also?
Hi, @Made4uo-Ribe , just added the code to base.css, which indeed removed the white background. However, the Shop all button remains there. I would also like to remove that button as well, not just the white background. Can you please help with that too?
Also - I want to remove both the white background and the Shop all button from Mobile version as well.
Thank you!
Oh, Sorry I didnt read well.
Please replace with this code. Thanks!
Same Instruction.
.slideshow__text.banner__box.content-container.content-container--full-width-mobile.color-background-2.gradient.slideshow__text--right.slideshow__text-mobile--right {
display: none;
}
And Save.
It will remove also in the mobile.
Worked great, thank you!

