Site logo

Archived topic

Date, category and tag font css and icon change

1 reply · Started by Matthew on May 4, 2020

Viewing posts 1–2 of 2

I would like to modify the CSS of the text of the date, categories, and tags. These aren't part of the customizer or anything?

https://drive.google.com/open?id=1UWaR-rHiowBAcaJOfuqRrIjYc1peoM8X

Also can the font be changed or fontawesome used for the icons to make them a bit more graphically bolder. Failing this I would like to remove them and put simply:

Categories: News, Uncategorised
Tags: tag 1, tag 2, tag 3

thanks,

Hi there,

Entry Meta colors can be controlled in Customizer > Colors > Content.
For general styles they all fall under entry-meta so this CSS:

.entry-meta {
    font-size: 15px;
    /* Styles here */
}

To switch the icons to Font Awesome then this:

.cat-links:before,
.tags-links:before {
    font-family: "Font Awesome 5 Free";
}

.cat-links:before {
    content: "\f007"; /* Add FA Icon unicode */
}

.tags-links:before {
    content: "\f007"; /* Add FA Icon unicode */
}
This archived topic is closed to new replies.