diff --git a/cms/templates/howitworks.html b/cms/templates/howitworks.html
index f405976040..b01b90fdd1 100644
--- a/cms/templates/howitworks.html
+++ b/cms/templates/howitworks.html
@@ -1,4 +1,5 @@
<%inherit file="base.html" />
+<%def name="online_help_token()"><% return "welcome" %>%def>
<%namespace name='static' file='static_content.html'/>
<%!
from django.core.urlresolvers import reverse
@@ -15,7 +16,7 @@
## "edX Studio" should not be translated
${_('Welcome to')}edX Studio
-
${_("Studio helps manage your courses online, so you can focus on teaching them")}
+
${_("Studio helps manage your online courses, so you can focus on teaching them")}
@@ -50,7 +51,7 @@
${_("Change Your Mind Anytime")}
-
${_("Draft your outline and build content anywhere. Simple drag and drop tools let your reorganize quickly.")}
+
${_("Draft your outline and build content anywhere. Simple drag and drop tools let you reorganize quickly.")}
@@ -74,12 +75,12 @@
${_("Learning is More than Just Lectures")}
-
${_("Studio lets you weave your content together in a way that reinforces learning — short video lectures interleaved with exercises and more. Insert videos and author a wide variety of exercise types with just a few clicks.")}
+
${_("Studio lets you weave your content together in a way that reinforces learning. Insert videos, discussions, and a wide variety of exercises with just a few clicks.")}
${_("Create Learning Pathways")}
-
${_("Help your students understand a small interactive piece at a time with multimedia, HTML, and exercises.")}
+
${_("Help your students understand one concept at a time with multimedia, HTML, and exercises.")}
@@ -89,7 +90,7 @@
${_("A Broad Library of Problem Types")}
-
${_("It's more than just multiple choice. Studio has nearly a dozen types of problems to challenge your learners.")}
+
${_("It's more than just multiple choice. Studio supports more than a dozen types of problems to challenge your learners.")}
@@ -113,7 +114,7 @@
${_("Instant Changes")}
-
${_("Caught a bug? No problem. When you want, your changes to live when you hit Save.")}
+
${_("Caught a bug? No problem. When you want, your changes go live when you click Save.")}
diff --git a/cms/templates/login.html b/cms/templates/login.html
index ac183927c0..7a3266bdff 100644
--- a/cms/templates/login.html
+++ b/cms/templates/login.html
@@ -1,4 +1,5 @@
<%inherit file="base.html" />
+<%def name="online_help_token()"><% return "login" %>%def>
<%!
from django.core.urlresolvers import reverse
from django.utils.translation import ugettext as _
diff --git a/cms/templates/register.html b/cms/templates/register.html
index bcdb2fcfac..58cdff858d 100644
--- a/cms/templates/register.html
+++ b/cms/templates/register.html
@@ -1,5 +1,6 @@
<%! from django.utils.translation import ugettext as _ %>
<%inherit file="base.html" />
+<%def name="online_help_token()"><% return "register" %>%def>
<%! from django.core.urlresolvers import reverse %>
<%block name="title">${_("Sign Up")}%block>
diff --git a/cms/templates/widgets/header.html b/cms/templates/widgets/header.html
index f9052eaf02..32cf79b96b 100644
--- a/cms/templates/widgets/header.html
+++ b/cms/templates/widgets/header.html
@@ -150,11 +150,8 @@