Portfolio Title/Background Color

Is there any way I can get these colors changed on the portfolio posts? https://sppoolco.com/portfolio-item/hollis-family/

  1. white background color (behind the images)
  2. title (says Hollis Family)
  3. “Share this project” down by the social media buttons

Thank you!

Hi @hwolfe,

The Title is what you added as a portfolio. So please go to Pro > Portfolios search for the portfolio in question and change its title.

To change the color of the social media icons, please kindly go to Pro > Theme Options > CSS and add the code below:

a.x-share {
    color: #ff00ff;
}

Feel free to change #ff00ff to whatever color that you like.

The white background behind the images is the background color of the container of the portfolios. The images have padding and it shows the background color there. You can change the color of the container by adding the CSS code below to Pro > Theme Options > CSS:

.single-x-portfolio .entry-wrap {
    background-color: #ff0000;
}

Feel free to change #ff0000 to whatever color that you like.

Thank you.

Hi, Christopher!

Thank you for that! I apologize, I wasn’t clear about the portfolio title. I need to change its color.

Hi @hwolfe,

Sorry for the confusion, please add this to Theme Options > CSS

.single-x-portfolio h1.entry-title.entry-title-portfolio {
	color: red;
}

Feel free to change the red value.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.