Please or Register to create posts and topics.

Author avatar responsive view problem

hello,

the avatar of the author in responsive mode, doesn’t get displayed properly..

i know that i can write something like bellow

@media screen and (max-width: 782px){
     #af-wrapper .post-author img.avatar{
           height: 40px !important; 
           width: 40px !important;
       }
}

but i want to know why it doesnt work by default :/

Uploaded files:
  • issue.png

Hello @olga

It seems that something (maybe another avatar or community-extension) is adding size-values directly to the image-tag. You can try to overwrite it by adding the following code to Forum – Appearance – Custom CSS:

@media screen and (max-width: 782px) {
#af-wrapper .post-author img.avatar {
    height: 40px !important;
    width: 40px !important;
}
}

The following avatar-extension should work fine with Asgaros Forum:

Avatar Manager – WordPress plugin | WordPress.org

olga has reacted to this post.
olga
If you want to support the development of Asgaros Forum, you can leave a good review or donate. Thank you very much!