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
caroline.monkcaroline.monk 

Helpful Links Tooltip Change

I am trying to change the tooltip that pops up when you hover over a custom link in the helpful links section of our Org's home page. Any ideas on how to go about doing this?

Navatar_DbSupNavatar_DbSup

Hi,

 

Follow the below steps

 

1.Go to Setup -> Customize -> Home -> Home Page Components

 

2. Click New->Choose HTML Area and->Input the Name for your component.->Click Next

 

3. Select show HTML on the right upper hand side and place in the following:

<script>

var allParas = document.getElementsByTagName("a");

for(var i=0;i<allParas.length;i++)

{

 if(allParas[i].innerHTML=='Cases') [ //Enter your link name instead of ‘Cases’]

 {

  allParas[i].title='Modified tool tip'; [ //Enter your tooltip  name instead of  'Modified tool tip']

 }

 }

</script>

 

4. Then Click save.

 

5. Now go into Setup -> Customize -> Home ->Home Page Layouts ->Click Edit next to->the Layout you would like to configure

Select the component from there

Click Next and order it where you want it to show.

Click Save.

 

6. Now go to your Home Page and it should be there.

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved. 

caroline.monkcaroline.monk

The system is placing this under the items to approve section of the Home Page and is showing as code. ?