How to increase the size of Catalog Item thumbnails/pictures in the Service PortalUser "Bruce Wayne" wanted to know if there was a way to change the picture size of the Catalog Items in his Service Catalog "Wayne Enterprises" within the Service Portal. It was found that Bruce could accomplish this by modifying the CSS properties either within the sp_page or sp_widget record (depending on his business needs/use case). In order to target the images themselves, Bruce was shown that he could right-click one of the images he wanted to change and select "Inspect". From there, the browser Developer Tools would open with a certain section of the "Elements" tab highlighted. On the right-side of the Developer Tools window, under the "Styles" tab, many CSS classes were shown, and one in particular was of interest: ".item-image". Bruce was able to modify the size of the images by going to either the sp_page or sp_widget record - again, dependent on what best fit his use case - and set the desired value(s) for the class there. He entered the below into the "CSS" form section: .item-image {min-height: 10rem;min-width: 10rem;}