diff --git a/opentech/static_src/src/app/src/components/ListingHeading.js b/opentech/static_src/src/app/src/components/ListingHeading.js
index ab534aff49c36dc48dfd2c28fa5eb2d621e7dbc3..b8b05c897d14df5c0478ee2b3ea98b9a64964a54 100644
--- a/opentech/static_src/src/app/src/components/ListingHeading.js
+++ b/opentech/static_src/src/app/src/components/ListingHeading.js
@@ -5,10 +5,10 @@ export default class ListingHeading extends React.Component {
     render() {
         const parsedTitle = this.props.title.split(' ').join('-').toLowerCase();
         return (
-            <li className="listing__item listing__item--heading" id={parsedTitle}>
+            <div className="listing__item listing__item--heading" id={parsedTitle}>
                 <h5 className="listing__title">{this.props.title}</h5>
                 <span className="listing__count">{this.props.count}</span>
-            </li>
+            </div>
         );
     }
 }