Formatting Faero Theme

I created a website based on the Faroe theme (maybe it is some years old, but it is perfect für my project). But I have two problems with formatting the font color in two places.

First problem is in Blog List page: Here should appear the categories, but they don’t because there is white font color on a white background. See here:

Here the same problem in the Blog Post page with the form field for tags. There should appear some tags that I used before, but I cannot see them because it is white font color in a white form field. See here:

I tried a few things, but I couldn’t find the starting point or the Swatch where I could make the change. Maybe someone can help me out here.

I suggest re-posting your questions on the Weavers.Space community forum. https://community.weavers.space

Why? @Davide is a member here.

1 Like

Hi @Cyclist happy to know you are enjoying Faroe. Thanks to @Jannis to tag me here.

So the first issue should be solved with this CSS. You can paste it in a CSS swatch in the blog list page.

.total-blog-list .post .category{
color:#275466 !important;
}

To fix the list of tags in the blog form please add the class dark-tags to the Tag section container and paste the following code into a CSS swatch.

.dark-tags li{
color:#275466 !important;
}

Let me know if that helps

Davide

5 Likes