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 trialBenjamin Joiner
303 PointsImage border, padding and color are not setting. Think I did something wrong in carbonara.html or index.html
I did the # ingredients like the video did but I'm still not getting a box with color , padding and border radius to show up. Think it might be something I did wrong in cabonara.html or index.html.....
2 Answers
Travis Alstrand
Treehouse Project ReviewerHiya Benjamin Joiner ! 👋
Thank you for providing a Snapshot of your Workspace!
It appears on lines 13 & 19 of styles.css
there is a space after the #
and before the id name. We need those to be in direct contact like so...
#ingredients {
...
}
Then, on line 27 of carbonara.html
there is a pipe character (|
) that snuck in your id name that needs to be removed so it will look like this...
<div id="ingredients">
After those adjustments things are looking great on my end 😃
Benjamin Joiner
303 PointsHey Travis, thanks a lot! I always miss the small detail, i added the space thinking it might have solved the problem and missed the | , reading too fast, and thinking it was a missed <div> thanks a lot! I'll take my time next time I'm debugging.
Travis Alstrand
Treehouse Project ReviewerIt happens to all of us, no worries! I'm glad you got things figured out! 😃
Benjamin Joiner
303 PointsBenjamin Joiner
303 Pointshttps://w.trhou.se/ttuun93x7y