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 trialChris Thomas
Courses Plus Student 304 PointsQuiz is telling me its not right but I can't figure out why!
Add the classes 'grid_5' and 'omega' to the 'featured-cupcake' element.
Bummer! You're missing both classes on the 'featured-cupcake' element. Preview Recheck work
index.html
1
<!DOCTYPE HTML>
2
<html>
3
<head>
4
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
5
<title>Smells Like Bakin' Cupcake Company</title>
6
<link rel="stylesheet" href="css/normalize.css" type="text/css" media="screen">
7
</head>
8
9
<body>
10
<div class="container clearfix grid_5 omega">
11
<div id="featured-cupcake">
12
</div>
13
<h2>Cupcake of the Week</h2>
14
<img src="img/featured-cupcake.jpg">
15
</div>
16
</body>
17
</html>
1 Answer
Chris Thomas
Courses Plus Student 304 Pointswooooops! nevermind, I figured it out! lol. I wasn't putting it next to the Div id. Trial and error people, trial and error!