• When I use the avatar_size shortcode (example: avatar_size=100), it doesn’t change the size of my avatars. They remain 50×50 regardless of the value I enter.

    This is the shortcode I am using on my blog:

    [authoravatars avatar_size=100 show_name=true page_size=50 user_link=bbpress_memberpage]

    All other parameters work except for avatar_size. Thank you for any help you can provide!

    https://www.ads-software.com/plugins/author-avatars/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Paul Bearne

    (@pbearne)

    Can you send me a link s to the page and I will have a look

    Thread Starter talkedtv

    (@talkedtv)

    The address is: talked.tv/memberlist

    Thank you for taking a look!

    Plugin Author Paul Bearne

    (@pbearne)

    I see the problem

    You have css that is overriding the size

    line 988 in style.css
    .photo {
    border:1px solid #d5d5d5;
    float:left;
    width:50px;
    height:50px;

    margin-right:10px!important
    }

    try added this later in the css

    .author-list .photo{
    width: initial;
    height: initial;
    }

    Thread Starter talkedtv

    (@talkedtv)

    That fixed it! Thank you very much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘"avatar_size" doesn't change avatar size’ is closed to new replies.