• good morning

    i would like to change that an element is or is not keyboard-focusable, i think i can do it throught tabindex ?? how or where can i do it?

    • This topic was modified 2 years, 10 months ago by Jan Dembowski.

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi @masantosmeca!

    How to control keyboard-focusability:
    Like you correctly said, you can control keyboard focusability using the tabindex property.

    1. For an element to be focusable, set tabindex=”0″ or a positive integer to specify the order of focus.
    2. For an element to not be focusable, set tabindex=”-1″ or to any negative integer.

    For example:
    <li tabindex=”0″>About Us
    <li tabindex=”-1″>Contact Us

    Where to set the tabindex property:
    That will depend on where the content is coming from. It can either be a theme or a plugin. As per your link, it seems like the focusable content (header and footer menus) is likely coming from the theme’s header.php and footer.php file.

    You will need modify this in code.

    Let me know if this helps!

    Thread Starter masantosmeca

    (@masantosmeca)

    really the page i want to change is:

    [ redundant link removed ]

    do you know a possible file?

    • This reply was modified 2 years, 10 months ago by Jan Dembowski.

    Hi @masantosmeca ,

    Without looking at the codebase, it is difficult to pinpoint where the page data is coming from. My suggestion would be to consult a web developer to make changes to the site theme and plugins.

    Thread Starter masantosmeca

    (@masantosmeca)

    thank you very much, greetings

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Keyboard-focusable’ is closed to new replies.