AI OnAI Off
If you are speaking about front-end, you can customize thumbnail using:
public class ImageData : MediaData { /// <summary> /// Gets or sets the generated thumbnail for this media. /// </summary> [ImageDescriptor(Width = 48, Height = 48)] public override Blob Thumbnail { get { return base.Thumbnail; } set { base.Thumbnail = value; } } }
more detail:
http://world.episerver.com/documentation/Items/Developers-Guide/Episerver-CMS/8/Content/Assets-and-media/Media-types-and-templates/
Aria
So if you need to change size within Media Library you may need to:
Aria
On small screens the thumbnails become very small in media library. It would be a nice feature to be able to enlarge them somehow.