Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Resize quick links

si21
Tera Guru

Hi experts,

How can we resize (make smaller) these quick links (external links) tiles.

Please let me know which part of CSS/ HTML needs to be changed to adjust the size of these links.

Screenshot 2023-06-23 204847 h.jpg

Thanks in advance.

2 REPLIES 2

Syed30
Tera Expert

Try this

https://www.servicenow.com/community/sysadmin-forum/employee-center-quick-links-widget-size/td-p/250...

Common properties to modify for resizing include height, width, margin, padding. Increase or decrease their values.. For example:

.quick-link { width: 100px; height: 100px; padding: 10px; margin: 5px; }

Community Alums
Not applicable

Hello @si21,

 

Using your browser’s dev tools, you can inspect an element and use CSS to achieve your desired effect. Then add the css code to a custom style sheet of that widget. Afterwards, refresh your page for the changes to take effects.

 

Thanks!