Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter Digest WP

    (@jay-stankiewicz)

    Rebuilt the theme, and made it responsive. Hoping to get feedback on bugs if any. Thanks

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    How come you’ve disabled the focus state?

    Ugh! The site – as it is – would be impossible for a sighted keyboard navigator to use.

    Thread Starter Digest WP

    (@jay-stankiewicz)

    Not sure why I disable the focus state just get tired of the yellow border in chrome.

    @esmi – Any feedback to help me move forward with the site would help, let me know what I can do to fix. Thanks

    Not sure why I disable the focus state just get tired of the yellow border in chrome.

    Re-enable it. And then add some CSS for the a:focus and a:active states. I usually recommend replicating the CSS used for a:hover but you don’t seem to have style that either. something like

    a:hover {
    text-decoration:none;
    }
    a:active,
    a:focus {
    color:#444f54;
    background:#f6f58f;
    }

    would make a huge difference.

    Thread Starter Digest WP

    (@jay-stankiewicz)

    Hey,

    Thanks Esmi, I appreciate the input. Better now? https://digestwp.com/

    This blog was on hold for a while but hoping to get it a bit more involved now.

    Almost there! You need to add a couple more selectors to the a:active/:focus CSS block – like .postItem .meta a. The easiest way to test this is to navigate to the front page of your site, take your hand off the mouse and limit yourself to using the TAB key to move around the page from link to link.

    Thread Starter Digest WP

    (@jay-stankiewicz)

    Hey,

    Awesome thanks. Something I definitely over looked and will make sure to add to all my current and future projects.

    Much appreciated!

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘New WordPress Blog’ is closed to new replies.