Post #19525
August 21, 2014, 07:57:27 PM
The problem is that those things are processed in two completely different ways.
Since there's the expectation that any avatar will be an image, an html img tag is in place in the forum skin to hold it, and thus anything you put in the avatar field in your profile will be placed in that code with the intention of pulling an image. Notice what happens if you give it something that's wrong or not even a URL...it displays an empty image. Because the code expect it to always be an image and has the image tags in the skin, it's a simple matter to attach CSS code to it restricting its' size.
On the other hand, there's no such expectation that a personal title will be an image...in fact, by design they should never be images. We added that ability in ourselves when we changed the code to parse any BB code that was typed into the field. This means that there is no html img tag that we can attach additional specifications to...that code is generated by the forum when it reads the [img] tag. As far as the software is concerned, there's no difference between parsing BB code in a personal title or in a forum post, and there's where you run into the problem.
If you change the [img] tag parsing code, it's going to apply that to images made in posts as well. Thus, another piece of code and a modification would need to be made specifying whether the code was being parsed for a post or a title and if it's a title, change the image tag that it generates. And then unless you used optional variables, you would have to go back to every instance of code that calls that functionality within the forums and change it to the new format.
I know how it may seem like it should be a simple change, but unfortunately it is not. It may be something I look into in the future, but there are just higher priority things. In the meantime, if we can self-moderate our image sizes, that would be awesome.