Hi! I want to change the “reply” button that users use after they have composed a reply. I changed the text to “submit” by customizing js.topic.reply.title. I’d like to now remove the arrow icon that is on that button. Thanks for your help.
You’d need to add some CSS to your theme (under admin > customize > themes)
For the reply button in the composer, this would work:
.submit-panel {
.btn-primary .d-icon {
display: none;
}
}
2 Likes
Kris, thanks so much for response and instructions. Worked perfectly!
1 Like
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.