Fotomatic Off-Platform Project Assistance Needed

Hi all,

I am currently working on the Fotomatic Off-Platform project. As you can see in the screenshot, the feature section (with the two camera lenses) is way too big. How do I make its containing box smaller? I’ve matched up my CSS document with the solution code, and everything is the same except the media queries (which I haven’t gotten to yet), but yet the output still looks different. I am a little bit confused on how to fix this.

Thank you in advance to the Codecademy Community :slight_smile:

For me, the same issue arose when I fixed the images, so I added a new section that targeted this, and that solved the issue:

.image-container img{
width: 100%;
height: auto;
max-width: 100%;
}

1 Like