• Resolved kbews1604

    (@kbews1604)


    How can I remove the dropdown feature for “Placed Cookies” & “Browser/Device based Consent” service description dropdowns on the cookies policy page so that the details for each heading are always visible? I am working on ADA accessibility issues for a client and having these sections visible would make navigating the page easier.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Aert Hulsebos

    (@aahulsebos)

    Hi @kbews1604,

    Let me have a look, these are HTML details attributes and are available with tab and space, and should be clear for a screen reader. There are however not easily toggled with CSS and need an attribute ‘open’ in HTML, so either javascript or editing the template.

    I’ll get back to you. regards Aert

    Plugin Author Aert Hulsebos

    (@aahulsebos)

    Hi @kbews1604,

    You can use:

    <script>
    document.querySelectorAll('.cmplz-dropdown').forEach(obj => {
        obj.open=true;
    }); </script>

    regards Aert

    PS: This is only for the cookies, the consent ‘dropdowns’ are set with javascript and need an edit of the plugin itself.

    • This reply was modified 2 years, 5 months ago by Aert Hulsebos.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Placed Cookies & Browser/Device based Consent dropdowns’ is closed to new replies.