Req Fix the News thumbnails on the main page
#1
Easier just to show you:

Before
Image
After

Image

It looks a hundred times better.
How?
Changed the .object-fill CSS parameter in object-fit from "fill" to "contain".

Like so:

CSS before:
.object-fill {
  -o-object-fit: fill;
  object-fit: fill;
}

CSS after:
.object-fill {
  -o-object-fit: fill;
  object-fit: contain;
}
Reply

Logout Mark Read Team Forum Stats Members Help
Fix the News thumbnails on the main page0