-
Is it possible to use custom colors for the taxonomy badges in the blog list and post views (wich is now shown in grey)? I would like to create a new taxonomy called rating, to set ratings like stars for list of books and movies. Part of my hb-blog-post-meta.html
Is it possible to use icons for the taxonomies or replace the "#" in tags with another sign? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
There is no such parameter for this purpose, you can achieve this via CSS.
.hb-blog-post-taxonomy {
background-color: red !important;
}
.hb-blog-post-taxonomy {
&:before {
content: "⭐";
}
} |
Beta Was this translation helpful? Give feedback.
There is no such parameter for this purpose, you can achieve this via CSS.