How to Change the Help Icon
The help icon is part of the Guided Learning theme.
Paying customers can download and configure their theme by downloading the design kit.
To change the background color of the icon:
div.ir-marker {
background-color: #12bc8d;
}To change the ? to another letter:
Add the following CSS rule to the design kit (if it doesn't already exist).
div.ir-marker:after {
content: 'i';
}To change it to your own custom image:
div.ir-marker:after {
content: none;
}
div.ir-marker {
background:
url(data:[your image goes here])
no-repeat
left center;
}You can use the following service to get the Data URI of your image - https://dopiaza.org/tools/datauri/index.php