Good day,
I would like to have a custom background (Christmas themed background) using the Sense theme throughout my website. How do I do this?
My website is www.glamexpresstt.com
Good day,
I would like to have a custom background (Christmas themed background) using the Sense theme throughout my website. How do I do this?
My website is www.glamexpresstt.com
HI @rmababir
you want to change the body background???
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css
body.gradient{
background: red;
}
change the color to color you want.
Thank you, but what if I wanted to put a Christmas background (like a wallpaper) how do I do this?
HI @rmababir
In this case you need to upload your image to the Store Settings => file, then copy the url and use this code
body.gradient{
background-image: url('file_url');
background-size: cover;
}
Thank you so much. It worked!