Hi Team,
I have a little problem with the color of the mention "Question" on the right sidebar in the Quiz.
When a question is being processed in the sidebar color the word "Question" is dark blue (not visible with dark gray background), I will wish to change it into white.
Also I have the scrollbar that appears while it does not have utility.
Thank you :)
This is the theme primary color that you are talking about.
So you'll need to go to wp-admin->appearance->customize->theme->theme primary color, and change it accordingly.
If you want to change the background color then go to customize->body->single menu light background color and change it accordingly.
Ok, when i do it that change all the appearence on all the website, but the issue is only on the quiz. Can I use Custom CSS for this item ?
Try adding the bellow css in your appearance->customize->custom css:
.quiz_details .quiz_timeline a.quiz_question {color:#fff;}
Hi Latiyan,
Thank you I resolv this problem.
But i have a little one more. On the box which contains questions (left sidebar), there is a scroll bar unnecessary, because the box its enough large to contain questions.
http://prnt.sc/dfmn0u
How to disable this scroll bar ?
Go to wp-admin->appearance->customiser->add custom CSS-> add these lines and save.
.quiz_timeline {
overflow-y: hidden !important;
}