Archived topic
author photo too small
5 replies · Started by Scott on August 4, 2019
Hi guys -
I used the instruction from this post: https://generatepress.com/forums/topic/author-box-3/
But I can't figure out why the author image is so small. Can you help? Link is in the URL field
THANKS
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