Change 'Add' icon to text on specific pages

I can globally change the ‘Add’ icon to be text using …
$this->setPhraseClass(“addlink”, “”);
$this->setPhrase(“addlink”, “MyText”);
in Language_Load… but I only want to do it on certain pages.I tried putting…
Language()->setPhraseClass(“addlink”, “”);
Language()->setPhrase(“addlink”, “MyText”);
in the Add page Page_Load function but that doesn’t seem to work

Any ideas please (v2020)

It should be like this:Language()->setPhraseClass(“AddBtn”, “”);
Language()->setPhrase(“AddBtn”, “MyText”);

That doesn’t seem to do anything for me.
(It’s the + button on the List page that I’m trying to change to text.)

sclg wrote:
in the Add page Page_Load function but that doesn’t seem to workDid you want to change the Add button in Add page?

sclg wrote:
(It’s the + button on the List page that I’m trying to change to text.)Then simply put your code in “Page_Load” server event under the List Page (do not in Add Page):Language()->setPhraseClass(“addlink”, “”);
Language()->setPhrase(“addlink”, “MyText”);

Of course!
Apologies for being an idiot…

HelloThank you. I benefited a lot from your responsesthe code worked with me successfully:
// Page Load event
function Page_Load() {
Language()->setPhraseClass(“addlink”, “”);
Language()->setPhrase(“addlink”, “Click here to register for the contest”);
//echo “Page Load”;
}But I have a request how do I change the font color and size

saleh wrote:

But I have a request how do I change the font color and size

You may write your css code to change the font color and size, and put it from “HTML” → “Styles” → “User”.

I don’t know how to deal with css code

Can you write the code please?