You need to sign in to do that
Don't have an account?

Using salesforce images ..
Hi Folks,
Does anyone know how to identify the list of all the images available in salesforce ? I wanted to include a image in my visualforce page and hence got stuck there without knowing the path for the image.
Thanks,
A B
Does anyone know how to identify the list of all the images available in salesforce ? I wanted to include a image in my visualforce page and hence got stuck there without knowing the path for the image.
Thanks,
A B
There must be an easier way to get the icons than what I did...
1. From any Salesforce page open up page source.
2. Search for dStandard.css and dCustom0.css. The names are clear enough to tell you what sort of icons exist in each of those css files.
3. Open up either dStandard.css and dCustom0.css files and search for your icons. If you are looking for the lead icon then you'll find it in dStandard.css. The relative URLs for e.g. are /img/icon/leads16.png & /img/icon/leads32.png.
As Bulent said, you need to store anything you need to use as a static resource and you need to own it yourself.
And one more thing - probably you guys might have been aware of already !! I used the 'firebug' tool to inspect the element in my salesforce page. By this way I was able to figure out the path for the image easily and then downloaded the same to use it as a static resource.
Thanks,
A B