From fa8674c5889583e852a2e035cc4ed461e7481eb6 Mon Sep 17 00:00:00 2001 From: Logan Tegman Date: Tue, 27 Oct 2015 19:30:47 -0700 Subject: [PATCH] Fix Bootstrap Waypoints Wording Clarifications Closes #3895 and #3893 --- seed/challenges/bootstrap.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed/challenges/bootstrap.json b/seed/challenges/bootstrap.json index 80715630fb7..dc089be6365 100644 --- a/seed/challenges/bootstrap.json +++ b/seed/challenges/bootstrap.json @@ -343,7 +343,7 @@ "id": "bad87fee1348cd8acef08812", "title": "Create a Block Element Bootstrap Button", "description": [ - "Normally, your button elements are only as wide as the text that they contain. By making them block elements, your button will stretch to fill your page's entire horizontal space.", + "Normally, your button elements are only as wide as the text that they contain. By making them block elements, your button will stretch to fill your page's entire horizontal space and any elements following it will flow onto a \"new line\" below the block.", "This image illustrates the difference between inline elements and block-level elements:", "\"An", "Note that these buttons still need the btn class.", @@ -1906,7 +1906,7 @@ "title": "Add ID Attributes to Bootstrap Elements", "description": [ "Recall that in addition to class attributes, you can give each of your elements an id attribute.", - "Each id should be unique to a specific element.", + "Each id must be unique to a specific element and used only once per page.", "Let's give a unique id to each of our div elements of class well.", "Remember that you can give an element an id like this: <div class=\"well\" id=\"center-well\">", "Give the well on the left the id of left-well. Give the well on the right the id of right-well."