[Support request] Last Modified Date Formatting

Home Forums Support [Support request] Last Modified Date Formatting

Home Forums Support Last Modified Date Formatting

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1018115
    gedosan

    Hi guys

    I’ve got last modified date showing nicely but want a bit of CSS to:

    – reduce the size & change the color of font
    – Add ‘Last updated:’ before the date
    – Add ‘written by:’ before my name

    Possible?

    Thanks

    #1018187
    Leo
    Staff
    Customer Support

    Hi there,

    – The color can be adjusted in Customizer > Colors > Content. Font size requires this CSS:

    .entry-meta {
        font-size: 10px;
    }

    – Try this:

    .posted-on .updated-date:before {
        content: "Last Updated ";
    }

    – Try this:

    .byline:before, .single .byline:before {
        content: "Written ";
    }

    Adding CSS: https://docs.generatepress.com/article/adding-css/

    Let me know if this helps 🙂

    #1018324
    gedosan

    Thanks – the font size and ‘written by’ worked, but not the ‘last updated’. Check out the page please.

    #1018425
    David
    Staff
    Customer Support

    Hi there,

    edited Leo’s CSS for the Updated date here

    #1018460
    gedosan

    Perfect thanks guys

    #1018585
    David
    Staff
    Customer Support

    Glad we could be of help.

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.