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 trialPratibha Soni
7,561 PointsResponsive design
Swap out <img src=”img/love-at-first-bite.gif alt=”Love at First Bite”> tag with the correct HTML markup to instead bring in an love-at-first-bite.svg, located in the same “img” folder.
This Question is really terrible as I have tried the solution about 30 times but no pass.
The final solution where I stopped is: <object data="img/love-at-first-bite.svg" type="img/svg+xml"> <a href="img/love-at-first-bite.svg"> <!--[if lte ie 8}--> <img src="img/love-at-first-bite.gif" alt=”Love at First Bite”> <!--[endif]--> </a> </object>
4 Answers
Adam Sackfield
Courses Plus Student 19,663 PointsI just got it to pass using the following code
<object data="img/love-at-first-bite.svg" type="image/svg+xml">
<a href="img/love-at-first-bite.svg">
<!--[ if lte IE 8 ]-->
<img src="img/love-at-first-bite.gif" alt="Love at First Bite">
<!--[ end if ]-->
</a>
</object>
All this is in the preceding video. Also see this link for more info on svg.
James Barnett
39,199 PointsRather than tell someone the answer and leave them to try and guess why it's correct, I perfer a teach a man to fish approach.
First take a look at their code and then try to point them in the direction on how to fix any mistakes you notice. If they are having trouble posting code to the forum you can always point them to the tips video in the side bar.
Pratibha Soni
7,561 Pointsi would also like to help with the hints........but how about the hints didn't work b'coz no description of the importance of "class" attribute in the video, where didn't tell the attribute should be removed or applied. Also no help was working just b'coz I had entered every possible answer could be...........
Nathan Elliott
16,232 PointsJames Barnett - I have to respectfully disagree with your opinion. While it may be your personal preference to teach with this method, it is in opposition to all of the current research on learning theory, which clearly shows that the most effective way for a person to learn is to make an honest attempt to solve a problem and then compare his or her answer to the correct one so that he/she receives immediate feedback to correct a mistake and take note for future problems. The teach a man to fish approach may sound better but it has been shown in numerous studies to be inferior.
James Barnett
39,199 Points>
The teach a man to fish approach may sound better but it has been shown in numerous studies to be inferior.
I'm always curious about pedagogy improvements, got any links to the peer reviewed journal articles from these stuides?
Nathan Elliott
16,232 PointsThank you for your openness. The vast majority of the papers on test re-test methods (and similar approaches under different names like feedback-error method, etc) require payment to view in full. In general, all that you will have access to for free on a search in Google Scholar, etc. are abstracts. However, please do have a look at results from popular search terms (which can be obtained from the presentation I reference below) as I would prefer that no one simply take my word for it.
Here is a fairly popular presentation from Berkeley that covers a broader range of topics in learning theory and summarizes several different learning methods, including some cherry-picked references at the end (by the author, not myself). You will probably recognize some very familiar material (Treehouse's method is based on PSI, which is discussed in the paper) including some discussion of test re-test methods and a brief discussion of feedback use.
Pratibha Soni
7,561 PointsI am really sorry for my question wrong typed. the following is the link for the question I have asked : http://teamtreehouse.com/library/build-a-responsive-website/responsive-design/flexible-images-part-one-vector-graphics
Pratibha Soni
7,561 PointsMy final ans for this qustion was: <object data="img/love-at-first-bite.svg" type="img/svg+xml" class="chart"> <a href="img/love-at-first-bite.svg"> <!--[if lte IE 8 ]--> <img src="img/love-at-first-bite.svg" alt="Love at First Bite"> <!--![endif]--> </a> </object>
Pratibha Soni
7,561 PointsI got it Thanks so much......
Adam Sackfield
Courses Plus Student 19,663 PointsNo problem. Click the best answer button to close off the question and help others. Thanks Pratibha Soni
Adam Sackfield
Courses Plus Student 19,663 PointsAdam Sackfield
Courses Plus Student 19,663 PointsCould you give me the link to the question so i can have a look thanks