Super Duper Suggestion
Dec 7, 2010 14:52:19 GMT -5
Post by Penny Cromwell on Dec 7, 2010 14:52:19 GMT -5
I was wondering if you would consider allowing us to have an increased avatar size on the forum?
I would suggest, how most IF sites do, to have the size limit be increased to 150 by 200. That would just be an extra fifty pixels in width and an extra hundred pixels in length.
Length (is up and down) so the size increase to that doesn't affect the way posts look at all and the extra fifty in width only would change the way posts look in a very slight manner or none at all because of the way the profiles are set up.
There is extra space on the side where avatars sit *points right now to the side where my avatar is* so not much of a change to posts will occur. Plus people tend to use blockquotes, double blockquotes or triple blockquotes so nothing will be greatly affected by this except people can get a little bit more creative/expressive avatars.
The avatar size 150 by 200 looks like this:
Here is the code:
Global Footer:
<script type="text/javascript">
<!--
/* Remove avatar size limits for everyone by california */
var img=document.getElementsByTagName("img");
if(location.href.match(/=(display|viewprofile|search2|pmview|recent)/)){
for(i=0;i<img.length;i++){
if(img.alt=="[avatar]"){
var t=img.parentNode;
var s=t.innerHTML.replace(/width=.?\d+?.?/i,'');
t.innerHTML=s.replace(/height=.?\d+?.?/i,'');
}
}
}
// -->
</script>
If you want to increase the avatar size limit (100x100) instead of removing it completely, put this code in the Global Footer, below the code above.
<script type="text/javascript">
<!--
/* avatar size limit by california */
var maxWidth=150;
var maxHeight=200;
var img=document.getElementsByTagName("img");
for(i=0;i<img.length;i++){
if(img.width>maxWidth && img.alt.match(/\[avatar\]/i)){
img.style.height=""+(img.height*maxWidth/img.width)+"px";
img.style.width=""+maxWidth+"px";
}
if(img.height>maxHeight && img.alt.match(/\[avatar\]/i)){
img.style.width=""+(img.width*maxHeight/img.height)+"px";
img.style.height=""+maxHeight+"px";
}
}
// -->
</script>