Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Chris Nelson
4,978 Pointssetting max width of img in css - challenge task 5 of 6 - not sure why I'm getting error msg
Here's the challenge task request:
Give the image a maximum width of 150 pixels and a border radius of 100%.
Here's the code I entered:
img { display: block; margin: 0 auto 30px; max-width: 150px; border-radius: 100%; }
Here's the error msg I got:
Bummer! Did you set the max width to 150px?
My response:
Yes, I attempted to do so. What's wrong with my code?
Thanks in advance for your help?
2 Answers

JAKZ AIZZAT
7,813 PointsYou should select a proper selector because there are several element image in the html. So,you need to specific the selector location . The image have a class inside it,why not we use the selector through that class (.profile-photo)
.profile-photo{
display:block;
margin:0 auto 30px;
max-width:150px;
border-radius:100%;
}

Anastasios Dimitriou
2,712 PointsThanks you helped a lot :)
Chris Nelson
4,978 PointsChris Nelson
4,978 PointsThanks Jakz. Selecting the class made the difference. :)