{"id":16,"date":"2026-03-15T15:21:14","date_gmt":"2026-03-15T15:21:14","guid":{"rendered":"https:\/\/pilgov.org\/index.php\/accessibility\/"},"modified":"2026-03-15T22:21:02","modified_gmt":"2026-03-16T03:21:02","slug":"accessibility","status":"publish","type":"page","link":"https:\/\/pilgov.org\/index.php\/accessibility\/","title":{"rendered":"Accessibility"},"content":{"rendered":"<p><em>Last Updated: 2026<\/em><\/p>\n<p>The <strong>Peoria County Government Transparency Portal<\/strong> is committed to ensuring that government transparency information is accessible to all members of the public, including individuals with disabilities.<\/p>\n<h2>Accessibility Controls<\/h2>\n<p>Use the controls below to customize how this Portal appears and behaves. Your preferences are saved in your browser and will persist on future visits. You can also access these controls at any time using the <strong>Accessibility<\/strong> button in the top bar of every page.<\/p>\n    <div class=\"pcg-a11y-controls\" id=\"pcg-a11y-controls-page\">\n        <div class=\"pcg-a11y-grid\">\n\n            <div class=\"pcg-a11y-group\">\n                <h3>Text Size<\/h3>\n                <div class=\"pcg-a11y-btn-group\">\n                    <button class=\"pcg-a11y-btn\" id=\"pcg-font-decrease\" aria-label=\"Decrease font size\">A&minus;<\/button>\n                    <button class=\"pcg-a11y-btn\" id=\"pcg-font-reset\"    aria-label=\"Reset font size\">A<\/button>\n                    <button class=\"pcg-a11y-btn\" id=\"pcg-font-increase\" aria-label=\"Increase font size\">A+<\/button>\n                <\/div>\n            <\/div>\n\n            <div class=\"pcg-a11y-group\">\n                <h3>Contrast<\/h3>\n                <div class=\"pcg-a11y-btn-group\">\n                    <button class=\"pcg-a11y-btn pcg-a11y-page-toggle\" id=\"pcg-contrast-high\" aria-label=\"Toggle high contrast\" aria-pressed=\"false\">High Contrast<\/button>\n                <\/div>\n            <\/div>\n\n            <div class=\"pcg-a11y-group\">\n                <h3>Link Highlighting<\/h3>\n                <div class=\"pcg-a11y-btn-group\">\n                    <button class=\"pcg-a11y-btn pcg-a11y-page-toggle\" id=\"pcg-links-highlight\" aria-label=\"Toggle link highlighting\" aria-pressed=\"false\">Highlight Links<\/button>\n                <\/div>\n            <\/div>\n\n            <div class=\"pcg-a11y-group\">\n                <h3>Motion<\/h3>\n                <div class=\"pcg-a11y-btn-group\">\n                    <button class=\"pcg-a11y-btn pcg-a11y-page-toggle\" id=\"pcg-motion-reduce\" aria-label=\"Toggle reduced motion\" aria-pressed=\"false\">Reduce Motion<\/button>\n                <\/div>\n            <\/div>\n\n            <div class=\"pcg-a11y-group\">\n                <h3>Dyslexia-Friendly Font<\/h3>\n                <div class=\"pcg-a11y-btn-group\">\n                    <button class=\"pcg-a11y-btn pcg-a11y-page-toggle\" id=\"pcg-font-dyslexic\" aria-label=\"Toggle dyslexia-friendly font\" aria-pressed=\"false\">Dyslexia Font<\/button>\n                <\/div>\n            <\/div>\n\n            <div class=\"pcg-a11y-group\">\n                <h3>Reset All<\/h3>\n                <div class=\"pcg-a11y-btn-group\">\n                    <button class=\"pcg-a11y-btn pcg-a11y-btn--reset\" id=\"pcg-a11y-reset-all\" aria-label=\"Reset all accessibility settings\">Reset All<\/button>\n                <\/div>\n            <\/div>\n\n        <\/div>\n    <\/div>\n\n    <script>\n    (function() {\n        var A11Y_KEY = 'pcg_a11y_prefs';\n        function getP() { try { return JSON.parse(localStorage.getItem(A11Y_KEY)||'{}'); } catch(e){return{};} }\n        function saveP(p){ try { localStorage.setItem(A11Y_KEY,JSON.stringify(p)); } catch(e){} }\n        function applyP(p) {\n            var r = document.documentElement;\n            r.style.fontSize = p.fontSize ? parseInt(p.fontSize)+'px' : '';\n            r.classList.toggle('pcg-high-contrast',  !!p.highContrast);\n            r.classList.toggle('pcg-highlight-links', !!p.highlightLinks);\n            r.classList.toggle('pcg-reduce-motion',   !!p.reduceMotion);\n            r.classList.toggle('pcg-dyslexic-font',   !!p.dyslexicFont);\n        }\n        function reflect(p) {\n            setP('pcg-contrast-high',    !!p.highContrast);\n            setP('pcg-links-highlight',  !!p.highlightLinks);\n            setP('pcg-motion-reduce',    !!p.reduceMotion);\n            setP('pcg-font-dyslexic',    !!p.dyslexicFont);\n        }\n        function setP(id, on) {\n            var el = document.getElementById(id);\n            if (el) el.setAttribute('aria-pressed', on ? 'true' : 'false');\n        }\n\n        document.addEventListener('DOMContentLoaded', function() {\n            var prefs = getP();\n            applyP(prefs);\n            reflect(prefs);\n\n            function bind(id, fn) {\n                var el = document.getElementById(id);\n                if (el) el.addEventListener('click', fn);\n            }\n            bind('pcg-font-decrease', function(){\n                prefs.fontSize = Math.max(12,(parseInt(prefs.fontSize)||16)-2);\n                saveP(prefs); applyP(prefs);\n            });\n            bind('pcg-font-reset', function(){\n                prefs.fontSize = 16; saveP(prefs); applyP(prefs);\n            });\n            bind('pcg-font-increase', function(){\n                prefs.fontSize = Math.min(28,(parseInt(prefs.fontSize)||16)+2);\n                saveP(prefs); applyP(prefs);\n            });\n            bind('pcg-contrast-high', function(){\n                prefs.highContrast = !prefs.highContrast;\n                saveP(prefs); applyP(prefs); reflect(prefs);\n            });\n            bind('pcg-links-highlight', function(){\n                prefs.highlightLinks = !prefs.highlightLinks;\n                saveP(prefs); applyP(prefs); reflect(prefs);\n            });\n            bind('pcg-motion-reduce', function(){\n                prefs.reduceMotion = !prefs.reduceMotion;\n                saveP(prefs); applyP(prefs); reflect(prefs);\n            });\n            bind('pcg-font-dyslexic', function(){\n                prefs.dyslexicFont = !prefs.dyslexicFont;\n                saveP(prefs); applyP(prefs); reflect(prefs);\n            });\n            bind('pcg-a11y-reset-all', function(){\n                prefs = {};\n                saveP(prefs);\n                document.documentElement.style.fontSize = '';\n                document.documentElement.classList.remove(\n                    'pcg-high-contrast','pcg-highlight-links',\n                    'pcg-reduce-motion','pcg-dyslexic-font'\n                );\n                reflect(prefs);\n            });\n        });\n    })();\n    <\/script>\n    \n<h2>Report an Accessibility Issue<\/h2>\n<p>If you encounter an accessibility barrier, please use the <a href=\"\/submit-correction\/\">Submit a Correction<\/a> form and indicate you are reporting an accessibility issue. We will work to address reported issues promptly.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Last Updated: 2026 The Peoria County Government Transparency Portal is committed to ensuring that government transparency information is accessible to all members of the public,\u2026<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"page-legal.php","meta":{"footnotes":""},"class_list":["post-16","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/pilgov.org\/index.php\/wp-json\/wp\/v2\/pages\/16","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pilgov.org\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/pilgov.org\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/pilgov.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pilgov.org\/index.php\/wp-json\/wp\/v2\/comments?post=16"}],"version-history":[{"count":2,"href":"https:\/\/pilgov.org\/index.php\/wp-json\/wp\/v2\/pages\/16\/revisions"}],"predecessor-version":[{"id":226,"href":"https:\/\/pilgov.org\/index.php\/wp-json\/wp\/v2\/pages\/16\/revisions\/226"}],"wp:attachment":[{"href":"https:\/\/pilgov.org\/index.php\/wp-json\/wp\/v2\/media?parent=16"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}