Skip to main content

Accessibility Notice

Important Accessibility Update

You may notice changes to the PDFs on our website. In accordance with the State of Colorado’s standards (HB-21-1110), an accessible version will now be available for every PDF we publish. Please contact us at contact@mhfd.org if you are not able find what you need in an accessible version. 

We are committed to ensuring our digital content is usable by everyone. Thank you for your support as we work to improve accessibility for all.

document.addEventListener("DOMContentLoaded", function() { function limitTeaserItems() { const articles = document.querySelectorAll(".items article"); articles.forEach(article => { const header = article.querySelector("header h3 span"); if (header && header.textContent.trim() === "News") { //PUT THE NAME OF THE TEASER HERE const subteasers = article.querySelectorAll(".subteasers .subteaser"); if (subteasers.length > 6) { // IF SUBTEASERS EQUAL THIS NUMBER LONG for (let i = 6; i < subteasers.length; i++) { // LIMIT TO THIS NUMBER LONG subteasers[i].style.display = "none"; } } } }); } limitTeaserItems(); });