Redesign tags

Hello,

I want to re-design the tags which are displayed at the post index page, the post page and the archive pages.
I want another textcolor.

On this topic I found how to change the design of the tagcloud -> https://theme.co/apex/forum/t/change-colour-style-of-tag-cloud/264491
But now I want to change the tags at the post index page, the post page and the archive pages.

Hi,

To redesign the tags, you can add the code below in Theme Options > CSS

/* tag colors */
.entry-footer a {
    color: rgba(0,0,0,0.375);
    background-color: transparent;
    border-color: rgba(0,0,0,0.125);
}

/* tags hover colors */
.entry-footer a:hover {
    color: #272727;
    background-color: #fff;
    border-color: rgba(0,0,0,0.25);
}

Please change the colors as you like.

I come up with the code using google chrome inspect element. For future reference you might want to check the links below.

Thanks

1 Like

Hello Paul,

Thank you. It works!
And double thanks for telling me how I can resolve it myself!!

Hi @Scharco,

Happy to hear that.

Feel free to ask us again.

Thanks.

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