diff --git a/application/templates/homepage.html b/application/templates/homepage.html
index eb709815..0a947e06 100644
--- a/application/templates/homepage.html
+++ b/application/templates/homepage.html
@@ -2,6 +2,7 @@
{% extends "layouts/layout.html" %}
{% block pageTitle %}Planning Data{% endblock %}
{% set templateName = "dl-info/homepage.html" %}
+{% set hideBannerBorder = true %}
{% block main %}
diff --git a/application/templates/partials/phase-banner.html b/application/templates/partials/phase-banner.html
index d8b36f5a..063e74fe 100644
--- a/application/templates/partials/phase-banner.html
+++ b/application/templates/partials/phase-banner.html
@@ -1,11 +1,12 @@
{% from "components/phase-banner/macro.jinja" import dlPhaseBanner %}
+
{{
dlPhaseBanner({
'phase': 'Beta',
- 'html': 'This is a new service – to help us improve it, sign up to take part in research',
+ 'html': 'This is a new service – to help us improve it, sign up to take part in research',
'classes': 'govuk-width-container govuk-width-container' if not fullWidthHeader else 'govuk-width-container',
'attributes': {
- 'style': '' if not fullWidthHeader else 'padding: 10px 30px; max-width: unset;'
+ 'style': 'border-bottom: 0px' if hideBannerBorder else '' + '' if not fullWidthHeader else 'padding: 10px 30px; max-width: unset;'
}
})
}}