How do I make the border around my text and image white?

Hi there,

how do I make the black border around my image and text section white? the theme has been changed to have a white background but it doesn’t change this section.

https://thecoldtub.co.uk/

Thanks

Tiernan

Hi @Thecoldtub

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:
main#MainContent {
    background: white;
}
  • And Save.
  • I hope it help.
  • Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

@Thecoldtub - add this css to the very end of your base.css file and check

body.gradient{background-color: #fff;}

thanks for your help this worked however… I can find no obvious way of changing the text colour as I have used in my product description and all the other pages where the text was white(I have tried changing the theme colour scheme of each individual page) … it also leaves a black section in my contact page. If you have any further info to help me change this it would be great

@Thecoldtub - add this too and check

.product__info-container{color: #000;}
.product__title>*{color: #000;}
.accordion__title{color: #000;}

thanks for that, it works for my product page but not my contact and info pages

https://thecoldtub.co.uk/pages/contact

@Thecoldtub -add this too

.main-page-title{color: #000;}
.rte p{color: #000;}

thanks very much thats sorted it