blogs - How to fix blogger template for mobile devices -
i have blog http://ahsancy.com . it's fine in pc when visit mobile or tab shows blank pic above post pic. how remove it?
try adding .img-thumbnail{display:none;}
@ end of styles.
or particular screen size add following styles.
@media screen , (max-width: 479px) .img-thumbnail { display none; } @media screen , (max-width: 767px) , (min-width: 480px) .img-thumbnail { display:none; }
you can use {width:0; height:0}
properties in place of {display:none}
Comments
Post a Comment