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 trialPhilip Schultz
11,437 Pointsmy images are not floating but my footer is
I am on the "style the portfolio " video. I am not sure why my website did not allow my photos to float next to each other. I am not sure if i made a mistake on the CSS page or the index.
''
/**************************** PAGE: PORTFOLIO ****************************/
galley{
margin: 0; padding:0; list-style:none; }
gallery {
float:left; width: 45%; margin:2.5%; background-color:#f5f5f5; color:#bdc3c7; }
''
2 Answers
ryan champin
16,836 Pointsyour applying the float to the entire gallery....u nned to apply it to the list items of the gallery
Philip Schultz
11,437 Points` <ul id="gallery">
<li>
<a href="img/numbers-01.jpg">
<img src="img/numbers-01.jpg" alt="">
<p>Experimentation with color and texture.</p>
</a>
</li>
<li>
<a href="img/numbers-02.jpg">
<img src="img/numbers-02.jpg" alt="">
<p>Playing with blending mode in photoshop.</p>
</a>
</li>
<li>
<a href="img/numbers-06.jpg">
<img src="img/numbers-06.jpg" alt="">
<p>80's style of glow.</p>
</a>
</li>
<li>
<a href="img/numbers-09.jpg">
<img src="img/numbers-09.jpg" alt="">
<p>Drips created using photoshop brushes.</p>
</a>
</li>
<li>
<a href="img/numbers-12.jpg">
<img src="img/numbers-12.jpg" alt="">
<p>Creating shapes sing repetition.</p>
</a>
</li>
</ul>
</section>
`
Philip Schultz
11,437 PointsPhilip Schultz
11,437 Points