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 trialJason Causey
2,686 PointsNeed help with task 2
2 Answers
Chase Lee
29,275 PointsDo what you did but instead of omega
do img
.
Chase Lee
29,275 PointsSo find the "Love at first bite" img in the html and locate it's wrapping div. Then select the class that wraps the img and select it in your css media query then select the img inside it using the child selector. after that give it a display: none;
as the value.
Do I make any sense?
Jason Causey
2,686 Points/*media queries*/
@media screen and (max-width: 705px){
.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6{
width: 100%;
}
.grid_2 omega{
display: none;
}
Jason Causey
2,686 Pointsis this even close? Not sure how to do the child selector thing.
James Barnett
39,199 PointsNot sure how to do the child selector thing.
Looks like you skipped over the CSS Foundations course, I'd suggest you follow along with the learn HTML & CSS.
In the learning adventure you to learn all about this CSS selectors and important stuff like the difference between child and descendant selectors.
Jason Causey
2,686 PointsActually I did! I went straight to the projects but didn't notice the adventure links. Will do thanks.
Jason Causey
2,686 PointsJason Causey
2,686 PointsThanks