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

Alex Goodge
seal-mask
.a{fill-rule:evenodd;}techdegree
Alex Goodge
Front End Web Development Techdegree Student 981 Points

Images are still appearing vertically after applying #gallery and #gallery li? (Not in columns of two)

HTML:

<nav> <ul class="gallery"> <li><a href="index.html" class="selected">Gallery</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html">Contact</a></li> </ul>
</nav>

CSS:

/************************* PAGE: GALLERY *************************/

gallery {

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

gallery li {

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

Is this because my images aren't the same size? Also my navigation links are now appearing in columns of two but the images aren't.

2 Answers

Samuel Ferree
Samuel Ferree
31,722 Points

You're using id selectors

#gallery {
  /* css */
}

but you've decorated your ul tag with a class... to target an element with class, use a leading '.' as the class selector

.gallery {
  /* css */
}

Note:

You're question appears all funny because the pound character (#) is rendering as a markdown header. check the markdown cheatsheet to see how to get your css (or other code) to display using 3 back ticks (```)