Hi everyone,
I would like to get some suggestions on easy ways to customise the assessment retry button. I'm using the Authoring Tool v0.3.0 and Adapt Framework v2.2.2, and my technical skill is not that good.
Hi everyone,
I would like to get some suggestions on easy ways to customise the assessment retry button. I'm using the Authoring Tool v0.3.0 and Adapt Framework v2.2.2, and my technical skill is not that good.
Hi James,
"my technical skill is not that good": you're going to need to some knowledge of HTML and CSS. In short, you'll need to inspect the retry button to find a CSS class (or combination classes) to which you can apply new CSS style rules. You'll apply that new styling in the "Custom CSS/Less code" found in the project settings.
.results-retry-button {
border: 2px solid #000;
background-color: #000080;
color: white;
}
Hope this gets you a step further down your path.