Site logo

[Resolved] Unable to add border on Author image

Home Forums Support [Resolved] Unable to add border on Author image

Home Forums Support Unable to add border on Author image

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2545043
    Pintu

    Hi, I’m trying to a border around my author image like this site https://theadminbar.com/how-to-write-a-blog-post-that-ranks-on-google-with-some-blogging-freebies/

    If I’m adding this CSS

    border-style: solid;
    border-width: 2px;
    border-color: brown;

    to my Author’s image. It is adding two different borders around it https://ibb.co/YZNzpF7

    Can you please give me the right CSS to add a border around my Author image?

    #2545067
    Fernando
    Customer Support

    Hi Pintu,

    Can you try this CSS?:

    .single-post img.avatar.dynamic-author-image.dynamic-author-image-rounded {
        border: solid 1px brown;
    }
    #2545076
    Pintu

    Didn’t work. The CSS you provided is for the Autor image in the meta section.

    But I want to add a border around the author’s image which is the END of the post. See here ( https://ibb.co/YZNzpF7 )

    I’ve added the link in the private section.

    #2545096
    Fernando
    Customer Support

    I see. Thank you for clarifying. Try this instead:

    .single-post .author-box img.avatar {
        border: solid 1px brown;
    }
    #2545102
    Pintu

    Now it works. Thanks 🙂

    #2556785
    Fernando
    Customer Support

    You’re welcome, Pintu! 🙂

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