You are going to block this site. This will do the following:
- You will no longer see this site in searches.
- Site will no longer see your site in searches.
- Site will not be able to comment on your site profile.
- Any comments this site has posted to your profile will not be displayed.
Are you sure you want to do this?
feel free to disregard this comment if this is a problem you wanted to solve yourself. but since i saw your menus were giving you trouble, you can add tabindex="0" to your .dropdown class items and then '.dropdown:focus .dropdown-content' and '.dropdown:focus-within .dropdown-content' as additions to the dropdown:hover menu activation. that should work with keyboard! it worked in my firefox dev tools, anyway.
tabindex is an attribute that is added in the html itself, while the other two things are for the css. (maybe you figured that out or knew that already, just saying just in case.)
Thank you so much!! I couldn't figure out why it wasn't working. I will try this out!
And to help out, here's some info on accessibility guidelines for tabindex: https://webaim.org/techniques/keyboard/tabindex
yea, and as an aside truly accessible dropdowns will make use of js to toggle an "aria-hidden" attribute to true or false based on user interaction on the menu, depending on whether it's open or not. i can't give any tips for that though, i'm sorry... my own dropdowns all just use the details element.
Got it…thanks for the info! I nabbed the dropdown code from w3schools LMAO I’ve never done dropdown menus before