Colors of texts and titles and icon

Hi

I want to know if it’s possible to do put tittle in blue and to put icon like this or I have to develop a logiciel or something ?

Capture d’écran 2020-08-11 à 14.46.49

Thank you

You can set the color of the category name by adding some CSS to your site’s theme, or to a theme component that you include with your theme. To target the category title in the category list, try

.category-list .category-text-title .category-name {
    color: blue;
}

You will probably want to use a different color than what you get with ‘blue’. For example #0088cc.

To add styles to your site in this way, you need to be able to use your browser’s web inspector to find the correct CSS selectors. If this is not something you want to do, you could create a topic in our #marketplace category to find some help with the task.

3 Likes