function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
LinThawLinThaw 

Is there salesforce img icon collection site?

Hi,

Where can I get all img icon of salesforce?
I am using the following site.
http://blogforce9dev-developer-edition.ap1.force.com/salesforceicons
But I need such as chalkboard icon that used when custom tab created.
Is there other site?

Regards,
LinThaw

by the way I want to use icon something like this...
<apex:pageblock id="ContactRecord" >
   
    <apex:facet name="header">
        <apex:panelGrid columns="1" width="100%" columnClasses="colstyleLeft,colstyleRight">
            <div class="pbTitle" style="width:100%;padding-left:0px;padding-top:0px;">
                <img src="/img/icon/computer24.png" class="relatedListIcon" style="width:24px;display:block;" />
                <h3 class="mainTitle">&nbsp;Title1</h3>
            </div> 
    </apex:facet>  

    ...

 </apex:pageblock>
Thanks.




 
Best Answer chosen by LinThaw
LinThawLinThaw
Thanks Alexander Tsitsura for sharing sites.

Finally, I got it to use custom icon I append the folder path [custom51_100] as follow.
<img src="/img/icon/custom51_100/chalkboard24.png" class="relatedListIcon" style="width:24px;display:block;" />
Regards,
LinThaw
 

All Answers

LinThawLinThaw
Thanks Alexander Tsitsura for sharing sites.

Finally, I got it to use custom icon I append the folder path [custom51_100] as follow.
<img src="/img/icon/custom51_100/chalkboard24.png" class="relatedListIcon" style="width:24px;display:block;" />
Regards,
LinThaw
 
This was selected as the best answer