Site logo

Archived topic

Author photo: border and color

5 replies · Started by Roger on June 12, 2022

Viewing posts 1–6 of 6

Hi,

1. How to insert a colored border around the author's image?
2. How to display the author's photo in black and white?

Hi there,

can add a border and make the image greyscale with this CSS:

.entry-meta .avatar {
    filter: grayscale(1);
    border: 3px solid #000;
}

But the filter greyscale will convert the border color too...

It worked!

How to add the same effect on author archive page?

Include the .archive.author .avatar selector in your CSS.
For example the CSS i provided would be this:


.archive.author .avatar,
.entry-meta .avatar {
    filter: grayscale(1);
    border: 3px solid #000;
}

Thank you!

You're welcome

This archived topic is closed to new replies.