Responsive images?

Post Reply
User avatar
botto
Jr. Bludit
Posts: 8
Joined: Sat Jun 15, 2019 9:49 pm

I noticed, when scaling my browser size, that images posted on Bludit do not scale accordingly. Rather, they get squished as I contract the browser. Will there be a responsive attribute for Bludit in the future such that images are scaled accordingly? Mind you, I tested Bludit on a tablet and it looks great. Mobile phones would be the other concern. Suggestions to mitigate the scaling issue meanwhile?
User avatar
Jay
Master Bludit
Posts: 133
Joined: Mon Feb 11, 2019 8:41 pm

Content management systems have nothing to do with responsiveness.
It's a matter of proper approach to mobile devices and/or resolutions during template creation. While - of course - serving a dedicated theme for mobile devices is recommended, but way harder to achieve.

But for the sake of responsive images, just add proper img behaviour in css for certain resolution grades with

Code: Select all

@media(min-width: XXX) {img: width:100%}
or

Code: Select all

@media(max-width:XXX) ... 
Treat above as examples.
Post Reply