Last active
November 12, 2025 17:05
-
-
Save askwpgirl/b4b81278b40f56159ccb8f3e7103ac39 to your computer and use it in GitHub Desktop.
LearnDash Style Fixes
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
| .ld-status-icon.ld-status-in-progress { | |
| border-color: #324A6D #e2e7ed #e2e7ed #324A6D !important; | |
| } | |
| .learndash-wrapper .ld-status-complete { | |
| background-color: #324A6D; /* Use your own color here */ | |
| color: #fff; | |
| } | |
| .learndash-wrapper .ld-progress .ld-progress-bar .ld-progress-bar-percentage { | |
| background: #324A6D; /* Use your own color here */ | |
| } | |
| .learndash-wrapper .ld-progress .ld-progress-heading .ld-progress-stats .ld-progress-percentage { | |
| color: #324A6D; /* Use your own color here */ | |
| } | |
| .learndash-wrapper input[type=button] { | |
| background-color: #37A8C6 !important; /* Use your own color here */ | |
| color: #fff !important; | |
| } | |
| .learndash-wrapper input[type=button]:hover { | |
| background-color: #324A6D !important; /* Use your own color here */ | |
| color: #fff !important; | |
| } | |
| #quiz_continue_link a { | |
| background-color: #37A8C6 !important; /* Use your own color here */ | |
| } | |
| #quiz_continue_link a:hover { | |
| background-color: #324A6D !important; /* Use your own color here */ | |
| } | |
| .learndash-wrapper .ld-table-list .ld-table-list-header { | |
| background-color: #324A6D !important; | |
| } | |
| .learndash-wrapper .ld-status-icon.ld-quiz-complete { | |
| color: #324A6D; | |
| } | |
| .ld-table-list-item a:hover { | |
| text-decoration: underline !important; | |
| color: #324A6D !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment