- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2020 10:05 AM
Hello,
I am adding pictures to my catalog items, on the service portal, if the item name wraps onto a second line, the picture gets partially cut off. Is there a way to resize the catalog item tiles/cards on the service portal to show the full picture if the title is longer than one line?
Thanks
Solved! Go to Solution.
- Labels:
-
Multiple Versions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2020 12:41 PM
I don't have a good solution for this, though this help you pinpoint where this is:
It concerns specifically this part of the HTML template.
If you for example replace class="overflow-100" with style="150px", you would already get a bigger tile. Obviously you would need to clone the widget for this.
You could also ammend this to the CSS of the instance of the widget. Then you don't need to clone the widget (= tested, works also fine). I personally would prefer this option. Because then you don't need to clone the widget, your not passing out on updates on the widget, etc..
For example CSS in the instance like below already works:
.overflow-100 {
height:150px;
}
Kind regards,
Mark
2020 ServiceNow Community MVP
2020 ServiceNow Developer MVP
---
LinkedIn
Community article list
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2020 12:40 PM