how to get a built in, customizable, gradient background for your theme
i just found this out lol so i thought i’d make a tutorial cuz it’s way better than using an image cuz u can change it whenever you want!
first go into your code by clicking “edit html” then scroll down a bit where you see things that start with <meta name= and add the following code
<meta name="color:gradient 1" content="#afcadb"/>
<meta name="color:gradient 2" content="#afb7db"/>
<meta name="color:gradient 3" content="#b6b1da"/>
<meta name="color:gradient 4" content="#cbafdb"/>
now go to “body” in your theme (hit control/command F and type body in to find it, but usually its just a bit after the metas)
then, see where it says either background: or background-color: and replace that line with the following code
background: -attachment:fixed!important; background: -webkit-linear-gradient({color:gradient 1}, {color:gradient 2}, {color:gradient 3}, {color:gradient 4}); background: -o-linear-gradient({color:gradient 1}, {color:gradient 2}, {color:gradient 3}, {color:gradient 4}); background: -moz-linear-gradient({color:gradient 1}, {color:gradient 2}, {color:gradient 3}, {color:gradient 4}); background: linear-gradient({color:gradient 1}, {color:gradient 2}, {color:gradient 3}, {color:gradient 4});
then you go back to the normal editing part and pick out your colors!