Hi there,
I am trying to replicate this Squarespace site. Amongst others I want to recreate the green-orange color gradient (below the navbar) that spans across the page body and is partly behind the first section.
https://www.cubescircle.de/de/beschreibung
Here’s what I tried:
- I tried applying the color gradient
linear-gradient(to bottom, #5dbcd2 0%, #fcb82c 100%) repeat scroll 0% 0% transparent ;
under Content CSS but I found no way of limiting the height of that (so it is not applied to the entire page).
Then I tried creating a section and using element CSS to enter the code like this:
$el.x-section{
background-color:linear-gradient(to bottom, #5dbcd2 0%, #fcb82c 100%) repeat scroll 0% 0% transparent ;
width: 100%
display: inline-block;
margin: 0px;
right;
}
But it does not work at all. Could you please give me a hint how to start.
Thanks!