[Resolved] Add “Admin” text in the comments area

Home Forums Support [Resolved] Add “Admin” text in the comments area

Home Forums Support Add “Admin” text in the comments area

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #2058463
    Sanu Kumar

    I’m looking to add “Admin” text just like WPBeginner is using (only where the author replied to the comments).

    Screen-Capture-177-24-Must-Have-Word-Press-Plugins-Tools-for-Business-Sites-2021-www-wpbeginner-com

    #2058677
    David
    Staff
    Customer Support
    #2058686
    Sanu Kumar

    It looks nice on desktop but not looking good on Mobile

    #2060191
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    We’re happy to point you in the right direction, but we can’t design/make design decisions for you. If there’s something specific you’d like to tweak (and can link us to an example), we’ll be happy to take a look.

    Thanks!

    #2060203
    Sanu Kumar

    If you see the badge in the comments section (where authors replied), it doesn’t look good on the mobile device. I want it to be responsive.

    See the image below:
    ooo
    URL: https://www.masteryblogging.com/best-appsumo-deals/

    #2060489
    David
    Staff
    Customer Support

    You have this CSS:

    .verified-user .comment-author cite::after {
        content: 'Sanu Replied';
        margin-left: 640px;
        text-align: right;
        background: #FF6200;
        color: #fff;
        padding: 10px;
        font-size: 15px;
    }

    replace that with:

    .verified-user .comment-author-info {
        width: 100%;
    }
    .verified-user .comment-author cite {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .verified-user .comment-author cite::after {
        content: 'Sanu Replied';
        text-align: right;
        background: #FF6200;
        color: #fff;
        padding: 10px;
        font-size: 15px;
    }
    #2060506
    Sanu Kumar

    thanks David

    #2060567
    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.