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 trialVictor Kossoski
2,317 PointsUneven Columns?
Any ideas why my gallery is displaying as in the screenshot below?
2 Answers
Craig Watson
27,930 PointsHi Victor,
For this particular course I have put the code up on GitHub for students to use as a guide or reference if they ever need it.
View the source code for the project
View a working version with a little added extra for help
If you have any questions on it you can even use github to create an issue and I can help you out!
Craig
Jonathan Grieve
Treehouse Moderator 91,253 PointsIt looks like it doesn't have any responsive CSS (i.e. Media queries) applied it yet. You'll deal with that later on in the course.
But as a sneak preview media queries look somethinglike this
@media and screen (max-width: 480px) {
}
And in them you can write CSS that only takes affect when the above condition has been met, i.e. a browser width of 480px or less.
Victor Kossoski
2,317 PointsThanks I was wondering if had messed up the code but ill just continue with the course