bootstrap's max-width 100% makes images blurry

Posted in: Newspaper
Post count: 41

you can even test it on your demo page. Just remove max-width attr. and see the difference. I realized that while looking to my category page which includes iOSslider. I saw that iOSslider had more clear images although the image link it used was the same with being used on posts.

It’s a problem of bootstrap I know, but iOSslider has clear images despite the fact that it uses max-width coming from bootstrap framework. So, I think if iOSslider can fix this bluriness, why can’t we?

I have searched this on google but only found this, which couldn’t help me at all.

http://stackoverflow.com/questions/15019664/how-to-stop-images-from-becoming-blurry-in-bootstrap-responsive-design

Post count: 6600

Hi,

Reply via email.

Use this CSS:

/* responsive monitor */
@media (min-width: 1200px) {
.post .thumb-wrap img {
max-width: inherit;
}    
} 

Thank you

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.