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

Mikey rizkalla
5,525 Pointshow to create a thumbnail image link?
I am currently setting up my online portfolio and am doing the same thing that i saw in a previous course and what are supposed to be small thumbnail images, shows as full size images.
here is the html from the course
<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>
I did the exact same thing and am not getting a thumbnail. thanks!

Matthew Smart
12,567 PointsMikey
This will be due to a CSS issue, I am assuming you might have forgot to put that in your code.
I would advise now to try and build your own from scratch, using resources from what you have learned in the previous course.
For example, you can target the image like: #gallery li img{ width:100%;height:100%; }.
Jennifer Nordell
Treehouse TeacherJennifer Nordell
Treehouse TeacherChances are that the course you were doing also had a css file which you don't have connected to your portfolio. Do you have any css set up for your portfolio?