How to change website background to an image in Ride theme?

I want to change the background color of website to a image like artwork
can we do that in the shopify ride theme

1 Like

Hi @Flowbliss

Go to your Online store > Themes > Edit code > open theme.liquid file, add this code before tag


Hi @Flowbliss ,
This is Theodore from PageFly - Shopify Page Builder App.
For solving the problem about the Changing The Background Color To Image, let’s try this solution:

Online Store ->Theme ->Edit code
Assets ->Base.css

body{
background-image: url(' url image') !important;
}

I’ll be so happy if my suggestion can help to solve your problem. If you have any further questions, please feel free to tell me.
Best regards,
Theodore | PageFly

1 Like

Hi @Flowbliss

Check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
body {
    background-image: url('path/to/your/image.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
  • And Save.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!