Reply To: Change background color of portfolio detail page

Home Forums WordPress Themes – Premium Pure & Simple Change background color of portfolio detail page Reply To: Change background color of portfolio detail page

#15851
Shekhar Bhandari
Participant

Hi Sandy,
You can write a custom CSS for changing the background color of the image container. Remember you need to change the custom CSS in child theme Style.css.

.featured-image-portfolio {
   margin: 1.5rem auto 1.5rem 0;
   background-color: #fff;
}

Thanks.