Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
How to change the slideshow width? I don't it that long. I want it in the middle with empty/specific color on right and left side.
Website:
Solved! Go to the solution
This is an accepted solution.
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:
@media only screen and (min-width: 1000px){
slideshow-carousel#carousel-template--22115827351868__slideshow {
max-width: 90%;
margin: auto;
}
section#shopify-section-template--22115827351868__slideshow {
background: bisque;
}
}
And Save.
Result:
Note: You can change the color, and also i didnt include in the mobile view.
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
This is an accepted solution.
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:
@media only screen and (min-width: 1000px){
slideshow-carousel#carousel-template--22115827351868__slideshow {
max-width: 90%;
margin: auto;
}
section#shopify-section-template--22115827351868__slideshow {
background: bisque;
}
}
And Save.
Result:
Note: You can change the color, and also i didnt include in the mobile view.
Please don't forget to Like and Mark Solution to the post that helped you. Thanks!
Thanks again! but how can i change the background color through code? or I have to change through the color name only?