trying to add background behind slideshow, or make slideshow fit to screen

Hello!

Can someone please help me? This is my website: https://drizzilicious.myshopify.com/

Password is: drizzy

The slideshow (on homepage banner) was made with an app called POWR: image slider/carousel

I’m trying to either A.) add a background image behind the slideshow or B.) resize the slideshow so it FITS to the screen instead of gets so large you need to scroll.. does anyone know how to help??..

Thank you!!

Hi @Mattinnovations

Im not sure what do you like. But try this.

  • 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:

A.) add a background image behind the slideshow:

div#shopify-section-image-slider-template--18694670909735__e7a2d8df_1692823732 {
    background: aquamarine;
}

B.) resize the slideshow so it FITS to the screen instead of gets so large you need to scroll

.multiSlider.hardDarkShadow {
    max-width: 100%;
}

  • And Save.

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

Thank you! but how can I get an image to show up as the background? I see that colors work but I wanted to try to put this image: https://cdn.shopify.com/s/files/1/0752/0760/6567/files/MicrosoftTeams-image_79_-PhotoRoom.png-PhotoRoom_1.png?v=1691185410 I added the link from my shopify content but that didn’t seem to work

Used tihs code. If you like to add image. You need to hange the URL for image.

div#shopify-section-image-slider-template--18694670909735__e7a2d8df_1692823732 {
     background-image: url("path/to/your/image.jpg");
}

Thank you!!!

Where do you add this code? Where you edit the slide show in the CSS part?

Did this end up working for you?