Hi Shannon,
Thanks for reaching out and thanks for supporting Code Snippets!
Could you please share the snippet you are using?
Best regards,
The Code Snippets Team
<!DOCTYPE html>
<html lang="en">
<head>
<style>
/* Set the background color */
body {
background-color: #D6D1CA;
margin: 0;
padding: 0;
display: flex;
flex-direction: column; /* Arrange content in column */
align-items: center; /* Center content horizontally */
min-height: 100vh; /* Make sure body takes up the full height */
}
/* Container for images to display them in a row */
.image-container {
display: flex;
flex-direction: row; /* Images in a row */
width: 100%; /* Make container width 100% */
justify-content: center; /* Center images */
gap: 0; /* No gap between images */
}
/* Style for each image */
img {
width: 20%; /* Let the width adjust based on content */
height: 250px; /* Uniform height for all images */
object-fit: cover; /* Ensure the image fills the container without distorting */
display: block; /* Remove extra space below images */
}
</style>
</head>
<body>
<!-- Image container with images -->
<div class="image-container">
<!-- Image 1 -->
<img src="https://heronpondhideaway.com/wp-content/uploads/2025/02/White-WAter-Rafting-Hudson-River-Adirondacks-North-Creek-Larger-image.jpg" alt="Image 1">
<!-- Image 2 -->
<img src="https://heronpondhideaway.com/wp-content/uploads/2025/02/Gore-Mountain-Skiing-Adirondacks-Larger-scaled.jpg" alt="Image 2">
<!-- Image 3 -->
<img src="https://heronpondhideaway.com/wp-content/uploads/2025/02/Sawmill-Waterfalls-in-Fall-Larger-Image.jpg" alt="Image 3">
<!-- Image 4 -->
<img src="https://heronpondhideaway.com/wp-content/uploads/2025/02/Trout-Fishing-Hudson-River.jpg" alt="Image 4">
<!-- Image 5 -->
<img src="https://heronpondhideaway.com/wp-content/uploads/2025/02/Hiking-Moxham-Mountain-overlooking-North-Creek.jpg" alt="Image 5">
</div>
</body>
</html>
Hi @shannonsadik
Thanks for the reply and update,
Can I check the code you shared – are you adding exactly this code into a HTML snippet and inserting via a shortcode or in the head/ body section? If you can provide some further explanation of how you have this working / set up I think it will help clarify where the problem may be and the resolution.
I notice the pages linked look fine when I view them so perhaps this may already be resolved, hence why I will set this topic to resolved but your more then welcome to reopen if its still ongoing and we are happy to help.
Wishing you all the best.
Yes someone already got back to me from another avenue and helped me to resolve this issue.