- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-23-2020 02:24 PM
Anyone know where I can re-size the image displayed on the catalog item page itself? It seems to default to a standard size and I can't find anywhere in the catalog item widget CSS to set a size property. I do not want to have to re-size each image individually (as we have over 600 catalog items!)
Solved! Go to Solution.
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-23-2020 10:00 PM
Follow Below:
1. ctrl+right click and open "instance in page editor"
2. Add below code to CSS (adjust height accrodingly)
.img-responsive
{
height:50px;
}
Raghav
MVP 2023
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-23-2020 10:00 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-23-2020 10:39 PM
Hi Chris,
As rightly suggested above you can add below code in the CSS after opening instance in page editor .
I personally would prefer this option. Because then you don't need to clone the widget, you'r not passing out on updates on the widget, etc..
.img-responsive{
height:80px;
}
Kind Regards,
Mohammad Danish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-24-2020 08:45 AM
Thanks both! This has worked perfectly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-02-2022 06:25 AM
Hi,
This is only works on resizing the picture on portal. Is it possible to do the same in Service Catalog?
Please help!