CSS as used on http://afterthemouse.com/user/18
Dang spammers
Unfortunately, I get a lot of spam on this site so the filters are fairly aggressive. Just rescued this from the spam folder.
Thanks for posting it. One note I have is that you might want to override theme_user_picture and put the extra markup in there. That way it will show the frame wherever the user picture is.
Michelle
Post new comment

Site contents are licensed under a
/* easy drop shadow================================== */.img-placer { position: relative; left: 10px; top: 5px;}.img-prev-placer { position: relative; left: 4px; top: 4px;}.img-wrapper { background:url(http://mysite.com/files/drop/shadow.gif) no-repeat right bottom; float: left;}.img-outer { background:url(http://mysite.com/files/drop/bottom-left2.gif) no-repeat left bottom; float: left; /* :KLUDGE: Fixes problem in IE5.2/Mac */}.img-inner { background:url(http://mysite.com/files/drop/top-right2.gif) no-repeat top right; padding: 0 5px 5px 0; float: left; /* :KLUDGE: Fixes problem in IE5.2/Mac */}.img-wrapper img { background-color: #fff; border: 1px solid #a9a9a9; padding: 4px; display: block;}Then in the node-uprofile.tpl I wrapped the existing code with my div’s<!-- Print the user's avatar --><div class="img-placer"> <div class="img-wrapper"> <div class="img-outer"> <div class="img-inner"> <?php print theme("user_picture",$profileuser); ?> </div> </div> </div></div>[Reprinted the second code snippet below as it didn't work in this post] Easy… Enjoy