Hello! i want to change the background color of my featured collection to white on my home page. The rest of the page i want to keep black. Can someone show me how to do this? thank you! my website is www.onlybeyu.com
I want to change the background color of the area where the products are. I want a white background so you cant see the white boxes of each product featured.
You can add custom CSS for the Featured Collection section, navigate to Theme → Customize → Home page → select Featured Collection section → Custom CSS.
Select the section class and add the following CSS to set the background color to white to section class:
background-color: #ffffff;
This will give you a white background for the selected section.
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:
div#shopify-section-template--17050546241749__featured-collection, .grid__image-ratio {
background: white !important;
}
.index-section {
padding: 75px 0;
margin: 0px !important;
}
.custom__item {
margin-bottom: 0px !important;
}
div#shopify-section-template--17050546241749__featured-collection .text-link, a {
color: black !important;
}
Ok new issue lmao when changing the text to black it changed my header text black and the words inside click buttons on my slide shows black. How do i turn those parts back white ?
Can someone help me alter the header, the words inside my click boxes inside my slide shows, the menu tab words, and the header in the collections area color back to white (everything circled in red) ? I have attached the original code i was given and it was added to the bottom of my theme.css file