The problem occurs because default Joomla! template for admin part is override print styles. It contains the following CSS rule:
Code: |
@media print
* { background: transparent !important; }
|
This problem can be fixed if modify <joomla_directory>/administrator/components/com_ariquiz/assets/css/styles.css file. Replace the following code:
Code: |
.aq-quiz-result #dtQuestions .icon-ban-circle {
background: transparent url(../../../../../components/com_ariquiz/assets/images/publish_x.png) center center no-repeat;
}
.aq-quiz-result #dtQuestions .icon-ok {
background: transparent url(../../../../../components/com_ariquiz/assets/images/tick.png) center center no-repeat !important;
}
|
with the following one:
Code: |
.aq-quiz-result #dtQuestions .icon-ban-circle {
background: transparent url(../../../../../components/com_ariquiz/assets/images/publish_x.png) center center no-repeat !important;
}
.aq-quiz-result #dtQuestions .icon-ok {
background: transparent url(../../../../../components/com_ariquiz/assets/images/tick.png) center center no-repeat !important;
}
|
Regards,
ARI Soft