This will turn the avatar icons within the Latest Topics module from default square into circular. 
This would make for a nice checkbox feature.
Meanwhile...
Add this code to css_additional.css
Additionally, if you want to do this to the main forum icons, add this code.
This will affect online users / message post / main forum icons.
It will not affect tiny or large icons.
This would make for a nice checkbox feature.
Meanwhile...
Add this code to css_additional.css
Code:
/* Start Latest Topics Avatars Circular */
div.b-post-sm__avatar.avatar.h-left img {
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
border: 2px solid black;
}
/* End Latest Topics Avatars Circular */
This will affect online users / message post / main forum icons.
It will not affect tiny or large icons.
Code:
/* Start Forum small Avatars Circular */
a.avatar.h-left img {
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
border: 2px solid green;
}
/* End Forum small Avatars Circular */

Comment