[Resolved] Date, category and tag font css and icon change

Home Forums Support [Resolved] Date, category and tag font css and icon change

Home Forums Support Date, category and tag font css and icon change

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1268349
    Matthew

    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,

    #1268645
    David
    Staff
    Customer Support

    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 */
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.