Change colour text specific slideshow

I’m trying to change the text colour of a specific slideshow. Ideally I would also like to set the text width so it does not come over the picture when seen on a smaller screen.

Would anyone be able to assist with this?

Text colour needs to be #423F3F

Please share the link to your store

https://www.bluevagabonds.com/products/swim-with-humpback-whales-of-tonga

Please add this code to Custom CSS of that section to change the text color.

.overlay__content {
  color: #423F3F
}

Regarding the picture issue, more texts will be missing if you proceed. It currently has some text missing.

That worked! amazing, is there also a way to make it the same size as the other font size on the page? or just even smaller?

Hello @BlueVagabonds ,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottow of the file:
.image-overlay .overlay__content {
color: #000;
}

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the tag


Result:

Hope this helps! If yes then Please don’t forget hit Like and Mark it as solution!

Please update the code

.overlay__content {
  color: #423F3F
}
@media (max-width: 749px) {
.line-1 { margin-bottom: .8rem; }
.line-2 { max-width: 20em; font-size: 1rem; }
.rimage-outer-wrapper { height: 700px !important; }
.overlay-type { padding: 40px 20px; }
}

Hi That worked, however now the text width is showing funny in the mobile version. Would we be able for the mobile version to keep the original way?

Please update the code


You are a magician! That made it perfect. Thank you!

You’re welcome.