Okay
  Public Ticket #2110123
Blog category title font
Closed

Comments

  •  21
    Sanjay started the conversation

    Hi. Just wondering how I can change the font colour from white for the 'category, philosophy' text on the grey background. Can't read it all that well being white. Thanks

  •  3,024
    Andrew replied

    Hi Sanjay,

    Use the following custom css:

    .section-title h1, .subheader {
        color:black !important;
    }
    

    Hope this helps.

  •  21
    Sanjay replied

    Yes that worked for the category name. But the word 'category' above it didn't change. 

  •  3,024
    Andrew replied

    Hi sanjay,

    Try this:

    .section-title span {
        color: black !important;
    }
    

    Hope this helps.

  •  21
    Sanjay replied

    Thanks!