Okay
  Public Ticket #3048522
category header color
Closed

Comments

  • gilda4 started the conversation

    Hi

    Is it possible to change the color of the header of the category page?

    thank you

    gilda

  •  279
    Noah replied

    Hi there,

    Could you try the following CSS:

    body.archive.category  .page-header-no-bg{
        background-color:red;
    }
    

    add it to salient \ general settings - css script related - custom css code.

    Adjust the red color to what you want.
    Cheers.

  • gilda4 replied

    thank you!  and then how would I change the color of the font in the archive category page header?

  •  279
    Noah replied

    Hi there,

    You can control the font color with in the page header with this CSS:

    body.archive.category .page-header-no-bg .subheader{
         color:white !important;
    }
    body.archive.category .page-header-no-bg div.section-title h1{
         color:white !important;
    }
    

    add it to same location and adjust to the color you want.
    Cheers.

  • gilda4 replied

    Thank you.  How would I change the color of the category description (i.e. "posts about worker cooperatives" in the attached?

  •  1,877
    Judith replied

    Hello Gilda,

    Please try this css:

    .archive.category .row .col.section-title p, .archive.tag .row .col.section-title p {
        color: white;
    }

    Thanks.