Hi guys,
Is there any way to change these big triangles or make them smaller?
Same with the “solution arrows”, i havent found a way to customize them.
@Panda the class of the replay button is replay-button
, so you can scale it like this:
.replay-button {
transform: scale(0.8);
}
To change the icon, you can put a custom icon into your collection.media
folder (prefix the file name with an underscore to prevent deletion on “Check Media”) and use it as background-image to display it instead of the default one:
.playImage {
visibility: hidden;
}
.replay-button {
background-image: url("_speaker.png");
background-size: contain;
}
@Nici for your solution arrow, that would be:
#typearrow {
color: red; /*<- or whatever */
}
7 Likes
@kleinerpirat Great, Thank you very much
1 Like