Hi,
I want to apply gradient background color to my sections. I want to choose which section to put gradient as background.
The colors are #0569bc #0678d6 #3EA5FA
Please guide me how to do this!
Hi,
I want to apply gradient background color to my sections. I want to choose which section to put gradient as background.
The colors are #0569bc #0678d6 #3EA5FA
Please guide me how to do this!
Hi, @Farmmedix welcome to the Shopify Community,
Please follow below instructions for adding gradient color to the background
1- Admin Dashboard > Online Store
2- Edit Code > Theme Files
3- Assets folder > application.css,OR base.css, OR style.css
paste below code in that last of any of above files
.featured-collection {
background-image: linear-gradient(to right, #0569bc, #0678d6, #3EA5FA);
}
Result will be like below.