Resize quick links
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-23-2023 08:23 AM
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.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-23-2023 08:37 AM
Try this
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; }
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-25-2023 11:11 AM
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!