Hi there! I would like to be able to add a permanent message like the attached image. Please, how could I achieve that? Thanks!
إعجاب واحد (1)
Simplest way is a css customization, using the before or after text Insertion option.
3 إعجابات
Like Jeff mentioned, CSS is the easiest way. Here is an example of what you could add to the common.scss
#login-form::before {
content: "My Custom Message";
color: red;
}
Which would give you this result:
6 إعجابات
Thanks guys! That’s what I needed.
إعجابَين (2)
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.