Hi Everyone!
In the next lecture, around the 4 minute and 30 second mark, Colt uses an id to change the style of the delete button on the campground show page.
He actually uses this id twice, once on line 24 and again on line 46, which breaks the rule where you're only supposed to use id's once per HTML document.
This can easily be fixed by changing the CSS rule (in your stylesheet) from an id to a class,
e.g., #delete-form to .delete-form then changing both lines of the HTML (24 and 46)
from id="delete-form" to class="delete-form"
Please let me know if you have any questions.
Cheers,
Ian
Course TA