Browse: Home / Snippets /

Mathjax Answer Formatting CSS

Contents


Snippet #

Important: All snippets are provided as-is without support or guarantees. These snippets are provided as guidelines for advanced users looking to customize LearnDash. For any additional help or support with these snippets, we recommend reaching out to a LearnDash Expert.

/**
 * Note this CSS shold not be needed after LD 3.1.2
 */
 
/* Corrects for MathJax formatting issues (blank answers and spaced LaTex display) when using certain MathJax plugins */

.learndash-wrapper .wpProQuiz_content .wpProQuiz_questionListItem .MathJax span {
    display: inline;
}
.wpProQuiz_content .wpProQuiz_questionList input.wpProQuiz_questionInput {
    max-width: 100%;
		width: 2%;
}
.learndash-wrapper .wpProQuiz_content .wpProQuiz_questionListItem span {
    margin-right: 0;
}