Hello all!
I am building a page with many sections (using the Sections plugin) and I’m trying to change the background for some of them to a gradient background, but I want to do it with CSS, not with an image.
For this, I am using the gradient CSS code provided by uiGradients.com:
background: #FF512F; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #F09819, #FF512F); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #F09819, #FF512F); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
I would like to know how do I put this code with Simple CSS to make it work.
Also, I imagine I have to set a Custom ID or Class for the specific sections I want to see changed, right?
Thanks in advance for any help. GeneratePress has the most helpful community I have ever seen.