Created
April 28, 2022 20:17
-
-
Save ashlie-elizabeth-moore/885746cdd31276684edb5b5f0cad4622 to your computer and use it in GitHub Desktop.
WP Accessibility Plugin Fix - Style & Move Front End Buttons
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** Accessability Buttons **/ | |
| .a11y-toolbar{ | |
| top: 75%; | |
| left: 0; | |
| } | |
| .a11y-toolbar ul li button{ | |
| background: #000000; | |
| border: 0px; | |
| } | |
| .a11y-toolbar button{ | |
| color: #ffffff !important; | |
| } | |
| .a11y-toolbar ul li button:hover{ | |
| background: #000000; | |
| border: 0px; | |
| transform: scale(1.25); | |
| } | |
| /** --END Accessability Buttons-- **/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment