I am trying to have image display without cropping.
These are the code sections I have tried manipulating without success. I also searched stackoverflow and W3 schools for variations but I'm not getting closer so believe my approach is flawed.
.FeaturedPost .snippet-thumbnail {
float: $(startSide);
margin: 0;
margin-$endSide: 1em;
}
.FeaturedPost .snippet-thumbnail img {
width: 200px;
height: auto;
max-width: 100%;
float: left;
margin: 10px;
}
The goal is that the full image will show without cropping - however it continues to crop the top and bottom of image. See attached screenshot, and site is www.paddlebeforethewave.com
I am trying to learn. Appreciate any tips on why my approach is flawed.
thank you very much.
Updating with further information based on comments.
<b:includable id='snippetedPostThumbnail'>
<div class='snippet-thumbnail'>
<b:with value='data:post.featuredImage.isYoutube ? resizeImage(data:post.featuredImage.youtubeMaxResDefaultUrl, 945, "945:600"): ""' var='highRes'>
<b:include data='{image: data:post.featuredImage, imageSizes: [256, 512, 945, 1684],imageRatio: "945:600",sourceSizes: "(min-width: 954px) 842px, (min-width: 801px) calc(100vw - 112px), calc(100vw - 64px)",enhancedSourceset: data:highRes}' name='responsiveImage'/>
</b:with>
</div>
</b:includable>