How do I get to have a animated gif as the background of my whole site I just need to learn the code for it please.
1 Like
You can try to follow this path:
Themes => edit code => asset => base.css
and add this code to the bottom of the file base.css
body {
background: url("https://cdn.shopify.com/s/files/1/0598/3263/1453/files/star-background-gif-_no-shooting-star.gif?v=1668992315") !important; /* chanage image as you like */
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
Thanks!