• Hi, I’d like to add just the color for the category header, without an image, so the description is easier to read. Instead, the same image as the homepage header is included in the categories. Thank you

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    You can try adding this code in Appearance > Customize > Additional CSS ( where you can adjust the color of your choice ):

    .archive.category .header-filter {
    background: linear-gradient(45deg, rgba(168, 29, 132, 1) 0, rgb(234, 57, 111) 100%) !important;
    }

    Kind regards!

    Thread Starter lucianuzzaci10

    (@lucianuzzaci10)

    thank’s for the response. I would like to set a solid RGB color (245, 86, 170), which is the color of my website, but it doesn’t work. It always creates a gradient or a dark burgundy. How can the code match the color I gave you?

    Hi,

    You can use this code instead:

    .archive.category .header-filter {
    background: rgb(245, 86, 170) !important;
    }
    .archive.category .header-filter::before {
    background-color: rgb(245, 86, 170) !important;
    }

    Hope this helps.

    Kind regards,

    Rodica

    Thread Starter lucianuzzaci10

    (@lucianuzzaci10)

    it’s working! Thank you so much

    Glad I was able to help 🙂

Viewing 5 replies - 1 through 5 (of 5 total)

You must be logged in to reply to this topic.