Hi community. I am trying make the text box on my slideshow (origin theme) transparent. Right now its a huge eyesore blocking my slideshow photos. I am not sure where to locate the code besides possibly slideshow.liquid. I only want it changed on the slideshow at the top of my homepage. Does anyone have any helpful tips on how to accomplish this because whenever I search for a solution it only brings up answers related to the text of the box, not the box itself.
1 Like
Hi @Valeria99
Would you mind to share your Store URL website? with password if its protected. Thanks!
Can I email you?
1 Like
You can PM me, thanks!
Thank you for the information.
Try 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:
.slideshow__text.banner__box.content-container.content-container--full-width-mobile.color-background-1.gradient.slideshow__text--center.slideshow__text-mobile--center {
background: transparent;
}
-
And Save.
-
Result:
-
Do you like to change the color text?
1 Like
Hmm, maybe a different colour to make the text pop. But looks amazing otherwise!
1 Like
Welcome, just let me know. ![]()
1 Like
TRy 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:
.slideshow__text.banner__box.content-container.content-container--full-width-mobile.color-background-1.gradient.slideshow__text--center.slideshow__text-mobile--center, h2.banner__heading.inline-richtext.h2 {
color: red !important;
}
.slideshow__text-wrapper.banner__content.banner__content--top-left.page-width, .slideshow__text.banner__box.content-container.content-container--full-width-mobile.color-background-1.gradient.slideshow__text--center.slideshow__text-mobile--center {
padding-left: 0px !important;
}
- And Save.
- Replace it. Thanks!
