In ScoreApp, there is a Download Report button that you can display throughout your results page. However, it’s by default fixed to say: “Download Report”.
If you were wondering how to change it, you can do it via CSS. You will need the ScoreApp Pro plan or higher.
The simplest is by making the element font-size: 0px, then overwrite it with any font size when creating :after pseudo. Example below:
.button {
font-size:0px;
}
.button:after {
content: “Download my wonderful report”;
font-size:15px !important;
}
If you need help implementing this change, feel free to reach out to me.
Denis


