Created
March 4, 2020 02:54
-
-
Save rali14/f3d571f710a8d44b7e054a67852e5bfd to your computer and use it in GitHub Desktop.
Hide the scoring columns from the quiz (appropriate for Survey type questions) in LearnDash
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
#wpProQuiz_user_content tr.categoryTr { | |
display: none; | |
} | |
#wpProQuiz_user_content tr > th, #wpProQuiz_user_content thead th { | |
display:none; | |
} | |
#wpProQuiz_user_content thead th:nth-child(1), #wpProQuiz_user_content thead th:nth-child(2) { | |
display: table-cell; | |
} | |
#wpProQuiz_user_content tbody th:nth-child(1), #wpProQuiz_user_content tbody th:nth-child(2) { | |
display: table-cell; | |
} | |
#wpProQuiz_user_content thead th:nth-child(2) { | |
border-top-right-radius: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment