Ok try 2 things:Stretcher25 wrote:hing is there for it to work but the image is displaying an red X. When I look at the url for the image it is http://www.mywebsite/happy.gif when it should be http://www.mywebsite/images/moods/happy.gif for some reason the images/moods is not getting appended to the url. Any suggestions?
Thanks,
My website is http://www.powwowpalace.com for you to please take a look.
open styles/prosilver/template/ucp_profile_profile_info.html
Find:
Code: Select all
<script type="text/javascript">
function update_image(newimage)
{
document.getElementById('image').src = (newimage) ? "{MOOD_PATH}/" + encodeURI(newimage) : "./images/spacer.gif";
}
</script>
Code: Select all
<script type="text/javascript">
// <![CDATA[
function update_image(newimage)
{
document.getElementById('image').src = (newimage) ? "{MOOD_PATH}/" + encodeURI(newimage) : "./images/spacer.gif";
}
// ]]>
</script>
Code: Select all
"{MOOD_PATH}/"
Code: Select all
"./images/moods/"