[Resolved] Customizing the post date

Home Forums Support [Resolved] Customizing the post date

Home Forums Support Customizing the post date

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #921396
    Hasan

    I’ve placed the following CSS on the child theme to customize the post date on the single posts as provided on the theme document:

    .posted-on .updated:before {
        content: "Taken on ";
    }

    But nothing is being changed. Please suggest how to fix that: http://prntscr.com/nydari

    #921439
    David
    Staff
    Customer Support

    Try this:

    .posted-on:before {
        content: 'Taken on ';
    }
    #921486
    Hasan

    Perfect! Thanks!!

    #921487
    David
    Staff
    Customer Support

    You’re welcome

    #921492
    Hasan

    Hi again David!

    How can I also change this for the list created with show posts on this page? https://snapbangladesh.com/stories/

    I need this line to be the same format as the single posts like this: http://prntscr.com/nyf7yg

    #921513
    David
    Staff
    Customer Support

    Try this:

    .wp-show-posts-entry-meta {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    .wp-show-posts-separator {
        display: none;
    }
    .wp-show-posts-byline:before {
        content: '\00a0 by ';
    }
    .wp-show-posts-posted-on:before {
        content: ' Taken on ';
    }
    #921851
    Hasan

    Awesome! Thanks a million!! 🙂

    #921855
    David
    Staff
    Customer Support

    You’re welcome

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