Hello Alex,
You can modify the
Image gallery web part (
~\CMSWebParts\Viewers\Documents\ImageGallery.ascx.cs) to change the order direction. You will need to set a
RepeatDirection property of the
lstImages datalist to
RepeatDirection.Horizontal instead of the default value
RepeatDirection. You can do so in
SetupControl()method:
// Repeat properties
lstImages.RepeatColumns = Columns;
lstImages.RepeatLayout = RepeatLayout;
//lstImages.RepeatDirection = RepeatDirection;
lstImages.RepeatDirection = RepeatDirection.Horizontal;
Best regards,
Michal Legen