Reply To: Post Featured Image being Stretched on Iphone

Homepage Community Forums Imagery Theme Support Post Featured Image being Stretched on Iphone Reply To: Post Featured Image being Stretched on Iphone

#813
Wes
Moderator

    Ok I just got it fixed. If you look on or around line 2573 in your style.css file (this may be located on a different line if you made changes to this file) you’ll see something that looks like this –

    
    	#content .home-posts img {
    		height: 100%;
    		margin-bottom: 20px;
    		width: 100%;
    	}
    

    The height: 100%; is what is causing the issue and needs to be removed or replaced with “auto”. So it should look like this –

    
    	#content .home-posts img {
    		height: auto;
    		margin-bottom: 20px;
    		width: 100%;
    	}
    

    I have updated the theme, so you can either manually make the changes by editing your style.css or you can re-download the theme from your account page – https://appfinite.com/my-account ….(only do the second option if you haven’t already made changes to your style.css)

    Thanks for pointing that issue out.

    Let me know if that works.