Reputation: 3
I'm using iWeb to design a website and I'm getting html showing up as well as the Like button, when I access my site on iphone and/or ipad. Anybody have any clues?
Website: ncdoggydaycare.com
Code is posted here: ncdoggydaycare.com/Blank.html
Make sure to use a capital "B" in Blank.html
Upvotes: 0
Views: 260
Reputation: 311
You need to add /Site to that link before the HTML page.
The reason it's showing the HTML is because you're closing the iframe before you've finished with it. Here you go:
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.facebook.com%2Fncdoggydaycare&send=false&layout=box_count&width=250&show_faces=true&action=like&colorscheme=light&font&height="90" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:250px; height:90px;" allowTransparency="true"></iframe>
Upvotes: 0