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 trial

HTML How to Make a Website Styling Web Pages and Navigation Style the Portfolio

James Blogg
James Blogg
1,109 Points

Getting the images into two 3 image columns

I've gone back a few steps to here as I want to try and add a sixth image so I have two columns of three images.. When I add the 6th image it floats low down the page... I can't get it to line up and it's driving me crazy! Please help.

HTML

<section> <ul id="gallery"> <li> <a href="img/1.jpg"> <img src="img/1.jpg" alt=""> <p>Pristine.</p> </a> </li> <li> <a href="img/2.jpg"> <img src="img/2.jpg" alt=""> <p>Storm clouds.</p> </a> </li> <li> <a href="img/3.jpg"> <img src="img/3.jpg" alt=""> <p>Softness.</p> </a> </li> <li> <a href="img/4.jpg"> <img src="img/4.jpg" alt=""> <p>Mountains, snow and ice.</p> </a> </li> <li> <a href="img/5.jpg"> <img src="img/5.jpg" alt=""> <p>Darkening skies.</p> </a> </li> <li> <a href="img/6.jpg"> <img src="img/6.jpg" alt=""> <p>Color on a cloudy day.</p> </a> </li> </ul> </section>

CSS

gallery {

margin: 0; padding: 0; list-style: none; }

gallery li {

float: left; width: 45%; margin: 2.5%; background-color: #f5f5f5; color: bdc3c7; }

gallery li a p {

margin: 0; padding: 5%; font-size: 0.75em; color: bdc3c7; }

It's the last "6.jpg" that won't sit nicely as the 3rd image down on the 1st column.

Himanshu Chopra
Himanshu Chopra
3,055 Points

Hii. Can You share your workspace please so we can take a look.

James Blogg
James Blogg
1,109 Points

Hello,

Thanks for the reply. Here is a snapshot:

https://w.trhou.se/x41vptn8v1

1 Answer

Himanshu Chopra
Himanshu Chopra
3,055 Points

Hii your image size for img/3.jpg is larger then all other images. img/3.jpg size is 1024 x 706px and except that all other image size is 1024 x 683px. Try fixing the size for img/3.jpg to 1024 x 683px and that would solve your issue.

Let me know if you have any query.

:)

James Blogg
James Blogg
1,109 Points

It's all looking good...

Many thanks!

Himanshu Chopra
Himanshu Chopra
3,055 Points

You are most welcome. :) Hye If my answer worked for you then can you mark it as a 'Best Answer' ?