I am attempting to customize the layout of the code available at https://codepen.io/rperry1886/pen/KKwbQNP in order to showcase the images in a horizontal sequence rather than vertically. Despite referring to resources on Flexbox like https://css-tricks.com/snippets/css/a-guide-to-flexbox/, adjusting the code from:
flex-direction: column;
to:
flex-direction: row;
does not seem to yield the desired outcome. I am mystified by this and am seeking assistance on how to achieve a left-to-right display for the items in this particular code snippet. Can anyone clarify this issue and provide guidance on how I can accomplish this layout adjustment?