Link to home
Start Free TrialLog in
Avatar of jonathanduane2010
jonathanduane2010

asked on

how to resize all the images by css?

Hi,

I am trying to resize all the images by css, but its not working.  

how do I do it?

http://iradionortheast.com/ifeed/
Avatar of Prakash Samariya
Prakash Samariya
Flag of India image

hello, the link you provided asks for credential!!

Please share your code in jsfiddle.net to check with the issue!
Adding this to the img element in your stylesheet should work:

img {
    max-width: 540px; /* customize this; can also be a percentage */
    height: auto; /* proportionally overrides the actual height of the image */
}

This affects all images, so you will want to be specific with the CSS reference for certain images to be affected, only.

I could not see your website due to password protection, so I was unable to use your stylesheet as a reference point.
Avatar of jonathanduane2010
jonathanduane2010

ASKER

@ResQTek Nancy

password: ireland. check page "ifeed"
ASKER CERTIFIED SOLUTION
Avatar of Nancy Rindone
Nancy Rindone
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial