Creating A Gradient Page Background in Squarespace // Squarespace CSS Tutorial

Just getting started with Squarespace CSS? Awesome! 😍 I want to teach you the basics – grab my free Getting Started Guide here πŸ‘‰ https://insidethesquare.co/learn
β€”
πŸ₯³ Ready to launch ? Use the code PARTNER10 for 10% off (affiliate code): https://insidethesquare.co/partner10
β€”
Gradients are a popular design style these days and totally possible in Squarespace with some creative CSS! Check out my tutorial video below on how to change your page background. Before you start the copy+paste process with these codes below, be sure to grab your two or three hex color values – six digits after the # symbol.
When you are ready, try it on your own site, grab the codes below!

Bedford Sites
//HORIZONTAL//
#siteWrapper {
background-color: #000000 ; /* make this your darkest color */
background-image: linear-gradient(to right, #000000 , #FFFFFF );
}
//DIAGONAL//
#siteWrapper {
background-color: #000000 ; /* make this your darkest color */
background-image: (to bottom right, #000000 , #FFFFFF );
}
//VERTICAL//
#siteWrapper {
background-color: #000000 ; /* make this your darkest color */
background-image: linear-gradient( #000000, #FFFFFF );
}
//HORIZONTAL – THREE COLORS//
#siteWrapper {
background-color: #000000 ; /* make this your darkest color */
background-image: linear-gradient(to right, ( #000000, #666666, #FFFFFF );
}
//DIAGONAL – THREE COLORS//
#siteWrapper {
background-color: #000000 ; /* make this your darkest color */
background-image:( #000000, #666666, #FFFFFF );
}
//VERTICAL – THREE COLORS//
#siteWrapper {
background-color: #000000 ; /* make this your darkest color */
background-image: linear-gradient( #000000, #666666, #FFFFFF );
}
Brine Sites
//HORIZONTAL//
.Main-content {
background-color: #000000 ;
background-image: linear-gradient(to right, #000000 , #FFFFFF );
}

//DIAGONAL//
.Main-content {
background-color: #000000 ;
background-image: (to bottom right, #000000 , #FFFFFF );
}

//VERTICAL//
.Main-content {
background-color: #000000 ;
background-image: linear-gradient( #000000, #FFFFFF );
}
//HORIZONTAL – THREE COLORS//
.Main-content {
background-color: #000000 ;
background-image: linear-gradient(to right, ( #000000, #666666, #FFFFFF );
}

//DIAGONAL – THREE COLORS//
.Main-content {
background-color: #000000 ;
background-image:( #000000, #666666, #FFFFFF );
}

//VERTICAL – THREE COLORS//
.Main-content {
background-color: #000000 ;
background-image: linear-gradient( #000000, #666666, #FFFFFF );
}

β€”
🀩 Ready for more codes? The codes in this tutorial are just the beginning of all the cool things you can do with Custom CSS! When you’re ready to dive in and start customizing, you can use codes from my CSS Cheat Sheet. It has over 30 pages of code snippets and pro tips to help you get started. Download your copy πŸ‘‰ https://InsideTheSquare.co/css
β€”
πŸ₯³ Ready to launch ? Use the code PARTNER10 for 10% off (affiliate code): https://insidethesquare.co/partner10
β€”
πŸ™‹ Need some help? Visit ​https://insidethesquare.co/code-help​ to see my current support options.
β€”
The term β€œSquarespace” is a trademark of Squarespace, Inc. This content is not affiliated with Squarespace, Inc. I just really love their platform β™₯
β€”
#squarespace #squarespacecss #howto #customizesquarespace #css #squarespacetricks #squarespacehacks #squarespacetips

You May Also Like