Site logo

Archived topic

author photo too small

5 replies · Started by Scott on August 4, 2019

Viewing posts 1–6 of 6

Hi there,

can you flush and disable your cache - if the issue persists leave it disabled and let me know so i can take a look.

done - still having the issue. THANKS

Edit this CSS:

.author-box .avatar {
    width: 100px;
    border-radius: 100%;
    margin-right: 20px;
}

to:

.author-box .avatar {
    flex: 1 0 100px;
    border-radius: 100%;
    margin-right: 20px;
}

As the author box is using flex the elements within will resize to fit - that flex property says the image can grow (1), it cannot shrink (0) and i would like it to be 100px as the base.

That did it! THANKS!!!

Glad to be of help

This archived topic is closed to new replies.