Page 1 of 1

Responsive images?

Posted: Mon Jun 17, 2019 12:10 am
by botto
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?

Re: Responsive images?

Posted: Mon Jun 17, 2019 12:40 pm
by Jay
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.