Thread Starter
David_G
(@questas_admin)
Note, none of the images are larger than 270×250
you mean the blogpost images?
they look OK but i see your point they are cut off
Thread Starter
David_G
(@questas_admin)
OK, Blogpost images.. but they go on the post as a Featured Image. Anyone have any idea how to fix these? They are being scaled UP in size.
The check engine image is generated by this HTML:
<img src="http://www.aandsmobileauto.com/wp-content/uploads/check-engine_BackRem-e1431545372886.png" class="attachment-large tc-thumb-type-thumb wp-post-image wp-post-image h-centered" alt="check-engine_BackRem" style="height: 250px; width: auto; left: -37.5px; top: -2px;" height="191" width="263">
ie 263px x 191px
h-centered suggests you have Dynamic thumbnails centering on any devices set on Global Settings>Image settings?
Thread Starter
David_G
(@questas_admin)
I turned off “Dynamic thumbnails centering” but that made it worse, but it did allow this snippet to work (which I tried before and wouldn’t work.
.thumb-wrapper img {
max-width: 270px !important;
max-height: 250px !important;
}
Thread Starter
David_G
(@questas_admin)
Thanks rdell for the help, it got me down the right road..
Thread Starter
David_G
(@questas_admin)
Yes, Thanks to rdellconsulting. I tried that same snippet before but there was other code with an !important tag blocking me. That went away once I removed centering.