If you have members on your board that use the default Yuku avatar, this image
Then you can replace it with your own custom image, by adding the following code to your skins. Just put this at the bottom of your Custom CSS (or Extra CSS if using the WYSIWYG editor)
If you want to completely hide the default avatar, use the following code instead
Then you can replace it with your own custom image, by adding the following code to your skins. Just put this at the bottom of your Custom CSS (or Extra CSS if using the WYSIWYG editor)
p.user-avatar { overflow: hidden; width: 100px; }
p.user-avatar img.default-avatar { padding-left: 200px; background: url(http://www.website.com/images/avatar.gif) left center no-repeat;}
Just replace the URL in red with the URL of your custom default avatar.
p.user-avatar img.default-avatar { padding-left: 200px; background: url(http://www.website.com/images/avatar.gif) left center no-repeat;}
If you want to completely hide the default avatar, use the following code instead
p.user-avatar img.default-avatar { display: none; }
