diff --git a/network-api/networkapi/wagtailpages/templates/buyersguide/product_page.html b/network-api/networkapi/wagtailpages/templates/buyersguide/product_page.html index a5f2cbfe090..be5732d3e32 100644 --- a/network-api/networkapi/wagtailpages/templates/buyersguide/product_page.html +++ b/network-api/networkapi/wagtailpages/templates/buyersguide/product_page.html @@ -262,10 +262,9 @@

{% trans "Artificial Intelligence" %}

{% endif %} - {% if product.updates.count > 0 %} -

{% trans "News" %}

- {% endif %} - {% if product.updates.count > 0 %} + {% if product.updates.count > 0 %} +
+

{% trans "News" %}

{% for item in product.updates.all %} {% with update=item.update %} @@ -277,8 +276,9 @@

{% trans "News" %}

{% endwith %} {% endfor %}
- {% endif %} - + {% endif %} + +

{% trans "Related products" %}

{% for related_product_page in product.related_product_pages.all %} diff --git a/source/sass/buyers-guide/views/product.scss b/source/sass/buyers-guide/views/product.scss index 8b4dc53a06d..588b8bbc67a 100644 --- a/source/sass/buyers-guide/views/product.scss +++ b/source/sass/buyers-guide/views/product.scss @@ -506,3 +506,9 @@ min-width: 290px; background: $pni-product-image-background; } + +.pni-section-divider { + border-width: 4px; + border-color: $black; + padding-bottom: 1em; +}