Is there CSS to replace a specific button label even though the class for 2 buttons are same?
Both the buttons are in different pages.Is there a way to replace the label using their current label like "Next" or "Finish"?
I tried below. It worked but it changed the label for both buttons.
.uiButton .label {visibility: hidden;}
.uiButton .label:after {content:'Submit';visibility: visible;position: fixed;}