diff --git a/challenges/bootstrap.json b/challenges/bootstrap.json
index 80715630fb..dc089be636 100644
--- a/challenges/bootstrap.json
+++ b/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:",
"
",
"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
."