Interested in a ServiceNow event built for developers? Registration for now[dev]26 is officially open!

How to remove the default external link indicator symbol in Quick links

kandulek
Tera Expert

Hi all,

 

Does anyone know how to remove the default external link indicator symbol (see attached screenshot with the exemplary quick link) in the Quick links widget in the Employee Portal?

 

kandulek_0-1788191143366.png

 

Thank you in advance for any hints!

 

Best regards

1 ACCEPTED SOLUTION

boteeuwen
Kilo Sage

You can hide the external link indicator directly from the Quick Links widget CSS.

Navigate to the Employee Center Portal page where the Quick Links widget is located. Hold Ctrl and right click on the Quick Links widget, then select Instance in Page Editor.

Scroll down to the CSS field and add this CSS:

.external link icon {
display: none !important;
}

Save the changes and refresh the portal page. The external link indicator should no longer be visible, while the Quick Link itself will continue to work normally.

View solution in original post

2 REPLIES 2

boteeuwen
Kilo Sage

You can hide the external link indicator directly from the Quick Links widget CSS.

Navigate to the Employee Center Portal page where the Quick Links widget is located. Hold Ctrl and right click on the Quick Links widget, then select Instance in Page Editor.

Scroll down to the CSS field and add this CSS:

.external link icon {
display: none !important;
}

Save the changes and refresh the portal page. The external link indicator should no longer be visible, while the Quick Link itself will continue to work normally.

Hi @boteeuwen after adjusting the exact external link indicator class it worked. Thank you for your quick help!