Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #41623

    Rich A
    Participant

    Hello. I’m using the Integrity Light child theme and I have a dark background image on my portfolio pages (portfolio layout template). I would like the portfolio page title (only) to be white. I’ve tried various styles, custom CSS for the portfolio page, etc. and everything I do seems to be ignored. I tried checking “Disable Page Title” option but that’s ignored as well.

    Thoughts?

    TIA!

    #42029

    Christian
    Moderator

    Hey Rich,

    The CSS selector for the portfolio page title is

    h1.entry-title.entry-title-portfolio {
    color: white;
    }
    

    Hope that helps. 🙂

    #42236

    Rich A
    Participant

    Thanks very much, but I tried adding that to both the Customizer and my child theme style.css file and still no change.

    portfolio_header

    TIA for any other ideas!

    #42552

    Rubin
    Keymaster

    Hi Rich,

    try:

    
    h1.entry-title.entry-title-portfolio {
    color: #FFFFFF !important;
    }
    
    

    if that is also not working please provide your site’s address so we can take a look what’s going wrong.

    #43215

    Rich A
    Participant

    Thanks for that, but unfortunately no change. 🙁

    #43219

    Rich A
    Participant
    This reply has been marked as private.
    #43442

    Christian
    Moderator

    Hey Rich,

    The code for that is

    .h-landmark span {
    color: white;
    }
    

    I went ahead and added the code in the Customizer’s CSS for you.

    Hope that helps. 🙂

    #43502

    Rich A
    Participant

    That’s terrific, thanks so much!

    However now the titles of the portfolio items themselves have gone missing (actually are appearing in white). Perhaps I can’t have it both ways?

    Thoughts?

    Thanks again!

    Portfolio Title

    #43520

    Rich A
    Participant

    FWIW, if I can’t have it both ways I’d like to be able to disable the Portfolio page title. I checked the box, but it still shows.

    Thanks again!

    #43821

    Support
    Member

    Hi Rich,

    I checked the portfolio items titles and they are grey. Maybe you already figured it out? If not, then try adding this custom CSS:

    .entry-title-portfolio {
    color:#272727;
    }

    Let us know if that worked.

    Thanks!

    #44279

    Rich A
    Participant

    That did the trick!

    Thanks so much and keep up the great work.

    #44568

    Christian
    Moderator

    You’re welcome Rich.