View Single Post
  #2  
Old 12-18-2014, 09:37 AM
Kyttias's Avatar
Kyttias Kyttias is offline
Premium Member
 
Join Date: Jan 2014
Posts: 857
Gender: Unknown/Other
Credits: 88,906
Kyttias is on a distinguished road
Default

For now, you can put up a notice like this - if you head into view/accountview.php, below this:
PHP Code:
$profileForm->add(new Comment("Avatar: "FALSE));
$profileForm->add(new TextField("avatar"$profile->getAvatar())); 
You can add something like:
PHP Code:
$profileForm->add(new Comment("<span style='font-size: 10px'>*Please host your images on a site like <a href='http://tinypic.com/'>TinyPic</a>.</span>")); 
These pictures have an id tag of 'avatar' and you can probably resize them with a bit of css in your stylesheet. #avatar { width: 50px } or something.

It should, in fact, be possible to host these images yourself, but it would require some effort... I hope something like this is included in the next release of Mysidia, though.
__________________
Please do not contact me directly outside of Mysidia.
I also cannot troubleshoot code more than two years old - I legit don't remember it.
Reply With Quote