Forum Discussion
GayathriNara120
3 years agoCommunity Member
Remove Step button with the number in Articulate Rise process template
Hello All,
I really like the Process Template that allows me to add an audio element. But, is there a way to edit that text inside the red block that says step 1, 2? It allows me to edit the word ...
SamHill
2 months agoSuper Hero
Hi GayathriNara120 it is possible to do, but would require post publish editing, which always comes with some risk.
The risk is that you, or somebody else forgets to apply the post publish edit before deploying. It's up to you to determine what the impact of that would be. In this instance, the risk appears quite low, in that, it's a bonus if the edit is made, but is not going to impact the learning if the edit is forgotten.
Ok, now I've got the disclaimer out of the way. In order to hide the Step number in the process interactions, you would just need to add this style definition to the main HTML file (content/index.html OR scormcontent/index.html), before the closing </head> node:
<style>
.process-card__number{
display:none !important;
}
</style>
</head>