Code: Select all
.section-ucp img.avatar {
border-radius: 0;
}
Thanks. But what about viewtopic? That code would only work for the UCP, where the problem isn't all that noticeable. And would I put that code at the end of common or stylesheet?halil16 wrote: ↑Tue Apr 09, 2024 1:36 am As far as I know, avatars in Prosilver have sharp edges by default. But still using this css code should solve your problem:
Code: Select all
.section-ucp img.avatar { border-radius: 0; }
This:
Code: Select all
.postprofile .avatar img, .section-ucp img.avatar {
border-radius: 0;
}
Code: Select all
img.avatar {
border-radius: 0;
}
It's okay. Both are possible.Bruce Banner wrote: ↑Tue Apr 09, 2024 1:42 am And would I put that code at the end of common or stylesheet?
Just tried this code at the end of stylesheet, purged the cache and hard refreshed the browser but it didn't work. Avatar corners are still rounded.
Code: Select all
img.avatar {
border-radius: 0 !important;
}
Code: Select all
.postprofile .avatar img, .section-ucp img.avatar {
border-radius: 0;
}