Click to See Complete Forum and Search --> : Changing an image with a certian URL


Kevin's Dog
12-18-2009, 01:04 PM
Hello.
Currently, I'm using webs.com as my provider for my site.

There are some things I want to change, that they dont have a option for, E.X. the profile image of new Users, and the Image Not Found image.

I have the urls, but i was wondering if it was possable to have html auto-change them.

nataliemac
12-22-2009, 07:00 PM
I'm not familiar with web.com and their service, but I'm going to guess that you probably cannot change the default images if they don't give you an option to do so. You'll get a lot further if you contact their customer support directly.

monkee98
12-30-2009, 06:06 AM
well you can use javascript you might have to change it a bit though if (gotImage == false)
{
document.getElementById("meImg").src = "Images/NoPiccie.png";
}

else if (gotImage == true)
{
document.getElementById("meImg").src = "Accounts/blahblah/MyPiccie.png";
}