Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAshot Hakobyan
452 PointsImages will not fall into 2 columns. Can anyone help, please?
When I resize the window, the page resizes as well but into one columns instead of two as it was in the video.
This is my workspace: https://teamtreehouse.com/workspaces/12281282
2 Answers
Krzysztof Kucharzyk
Front End Web Development Techdegree Student 4,005 PointsI can't check your code atm but i assume you have only one li tag. You have to include a li tag around each of your images, like so:
<li>
<a href="img/numbers-01.jpg"></a>
<img src="img/numbers-01.jpg" alt="">
<p>Industry leading UX Research</p>
</li>
<li>
<a href="img/numbers-02.jpg"></a>
<img src="img/numbers-02.jpg" alt="">
<p>Industry leading UX Research</p>
</li>
<li>
<a href="img/numbers-06.jpg"></a>
<img src="img/numbers-06.jpg" alt="">
<p>Industry leading UX Research</p>
</li>
<li>
<a href="img/numbers-09.jpg"></a>
<img src="img/numbers-09.jpg" alt="">
<p>Industry leading UX Research</p>
</li>
Joshua Baugher
1,569 Pointsi actually just ran into the exact same issue with the tags. thanks for the insight krzysztof!
Ashot Hakobyan
452 PointsAshot Hakobyan
452 PointsKrzysztof thanks for the help, What I need to do for you to be able to see the code?
Krzysztof Kucharzyk
Front End Web Development Techdegree Student 4,005 PointsKrzysztof Kucharzyk
Front End Web Development Techdegree Student 4,005 PointsIf this helped then it's ok, I cant see your code cause I'm at work but the problem you have is a common thing, so I guessed lacking of li tag was a problem in this challenge.