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

Bonnie McNeil
Bonnie McNeil
1,296 Points

My images are displaying in 1 column instead of 2

I just added the PAGE: PORTFOLIO section to resize the images for mobile, and instead of displaying in two columns like Nick's mine are still displaying in one column that fills the width of the browser window. My CSS code in that section matches his perfectly. Why is mine in one column instead of two?

Jay Padzensky
Jay Padzensky
4,731 Points

Hi Bonnie,

If you can please post either a screenshot of your code or utilize the markdown cheatsheet to post your code into this text field, Community members will have an easier time offering assistance!

Bonnie McNeil
Bonnie McNeil
1,296 Points

I just added the image caption styling from the next lesson and now it's in two columns... what gives?

Bonnie McNeil
Bonnie McNeil
1,296 Points
#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;
}

1 Answer

Chase Swanson
PLUS
Chase Swanson
Courses Plus Student 8,886 Points

Did you set the img styling to a max-width of 100%? I don't see that in your screen shot and it is pretty important.