Is there a way to make all my featured images the same size no matter the page? I’ve edited the image several times and it is still showing as a large pixelated image. http://ohmsbeasley.com/category/good-eats/ Post is avocado breakfast bacon
You can add this under Custom > CSS in the Customizer:
.entry-featured {
width: 50%;
margin: 0 auto;
}
body .entry-thumb img {
min-width: auto !important;
}
For second post i.e Avocado breakfast bagel, you need to change the featured image as the current dimension is 100px * 67px and that’s the reason why is showing pixelated.