Quote:
Originally Posted by Vizionz
If ya really want thumbs ya can do it manually. untill someone adds on a thumbnail script..
Find the lines below in the template pic_gallery_list
Code:
<td valign="top" style="width: 1px; padding-left: 20px">$userinfo[profilepic]</td>
and then change it to
Code:
<td valign="top" style="width: 1px; padding-left: 20px"><img src="$userinfo[profilepicurl]"height="200"width="250"></td>
just change the 200 and 250 in the height and width to fit how you want it
you could also just ad this instead to have a thumbnail that when clicked launches the picture in a new window full size
Code:
<td valign="top" style="width: 1px; padding-left: 20px"><a href="$userinfo[profilepicurl]"target="new"><img src="$userinfo[profilepicurl]"height="200"width="250"border="0"></a> </td>
What i would like though is to be able to put custum userfields on that page so instead of how its set up i could actually set it up to have a small bio page for users
|
Due to some of our users having pics that are different sizes the above code can cause them to be schewed.
by modifying it to what is below, the height:width ratio is maintained. no stretching or squashing occurs this way, and in the default table width there is no scrolling to the right.
Code:
<td valign="top" style="width: 1px; padding-left: 20px"><a href="$userinfo[profilepicurl]" target="new"><img src="$userinfo[profilepicurl]" width="150" border="0"></a> </td>