Lawyer Theme - Change List Font Colour

Hey guys

I’m trying to change the colour of the list numbers on this page: http://harleystreetprivateclinics.com/services/

Under the section “How We Work” there is a list across 3 columns and I can change the text but not the numbers. Is the formatting for the numbers defined somewhere else, like in a central typography section? I couldn’t see it under Theme Options> Typography.

Thanks
Harry

Hello Harry,

You can change the color of the numbers through the Element CSS values added to the text elements that contains those items in the How We Work section.

Please select the text element and go to the Element CSS and you should see this block of code:

.e244-27 ol li:before {
    content: counter(listing-counter) ". ";
    color: #b9965c;
    font-weight: bold;
    font-family: "Crimson Text",serif;
    font-size: 5em;
    position: absolute;
    left: 0;
    line-height: 1.5;
}

Then change the value of the color property to the color that you want.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.