• Resolved briqlab

    (@briqlab)


    Hi there,

    I have a few questions:

    1. I’d like to change the colour of the text on pages and portfolio pages to white. How can I do this?

    2. I also would like to change the colour of pagetitle headers, above the text on pages and portfolio pages.

    Can some one help me with finding the right code?

    Many thanks!

    Kirsten from BRIQLAB

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hi there!

    These CSS styles should do the trick based on what you’ve described:

    /*Page and portfolio body text color*/
    .page,
    .single-jetpack-portfolio {
        color: #fff;
    }
    
    /*Page and portfolio heading text color*/
    .page .entry-title,
    .single-jetpack-portfolio .entry-title {
        color: #eee;
    }

    I’m not sure what other color changes you’ve made, but you should be able to adjust those colors a bit if needed. ??

    Thread Starter briqlab

    (@briqlab)

    ?? Thanks!

    My pleasure!

    Hi, without opening another thread, I managed to change the color of the text, but not the little box that goes around the panel titles.

    Is there a code for that?

    Thanks

    Hi @poormanwp

    This should work for the borders on Pique’s titles:

    .pique-panel-content h2::before,
    .pique-panel-content h2::after,
    .pique-panel-content h2 {
        border-color: red;
    }

    Hi Chad,

    Thanks, that worked perfectly.

    Now, to make things more difficult, is there a way to make the borders of only certain ‘panels’ a different color?

    Would it involve something like:

    .home .post-373 and then something like the code you put above?

    Along those lines, yes. ?? This would change the color for a specific panel, provided that panel was displaying post ID 373

    .post-373 .pique-panel-content h2::before,
    .post-373 .pique-panel-content h2::after,
    .post-373 .pique-panel-content h2 {
        border-color: blue;
    }

    Awesome Chad! I really really appreciate it.

    I ended up playing around with the code you made me, and edited it to the heading titles as well to change color only on certain panels to work. I think I’m starting to get the CSS of this theme a bit more now.

    Thank you

    You’re welcome!

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Change the colour of text and headers in pages and portfolio pages’ is closed to new replies.