Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Design Edit a login page text without access to template Reply To: Edit a login page text without access to template

#276736
Shikkediel
Participant

Using a bit of JS would be easiest:

jQuery('span:contains(Seeker)').text('Some New Text');

Targeting it with CSS would be a workaround, you could overlay the current text with a pseudo element. That’s all that comes to mind.