# Another "custom signup" query :)

**URL:** https://meta.discourse.org/t/another-custom-signup-query/233560
**Category:** Development
**Created:** [July 21, 2022, 4:43pm UTC](https://meta.discourse.org/t/another-custom-signup-query/233560 "2022-07-21T16:43:24Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![agemo](https://avatars.discourse-cdn.com/v4/letter/a/ac91a4/32.png) [@agemo](https://meta.discourse.org/u/agemo)
#### Post date: [July 21, 2022, 4:43pm UTC](https://meta.discourse.org/t/another-custom-signup-query/233560/1 "2022-07-21T16:43:24Z")

</div>

Thinking of using a component to do this, a simple mod request, a little customisation of the sign up modal, here is the targeted text content:

> Welcome!  
> Let’s create your account

Say we want to change the **“Welcome!”** to **“Signup Now!!”**

`<h1 class="login-title" style="">Welcome!</h1>`

Is it possible to use CSS to change what appears in the h1?

Trying the below works for some case uses:

> .login-title:before {  
> content: “Signup Now!”;  
> }

As it will only add to existing text content before or after.

So is ir what is the best approach here, to replace the text content, what should I look to edit instead, some other element that contains the content that populates the various fields and elements of the signup popup?

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [July 21, 2022, 4:54pm UTC](https://meta.discourse.org/t/another-custom-signup-query/233560/2 "2022-07-21T16:54:14Z")

</div>

You don’t need a component to customize text, it can all be edited under admin → customize → text. You can search for `welcome!` for example, and change it here by clicking edit:

 ![Screen Shot 2022-07-21 at 12.52.04 PM](https://global.discourse-cdn.com/meta/original/4X/a/f/c/afc376711745bd4fb2744fc8451a99634b8198c3.png)

It’s generally not recommended to add text using CSS, because it’s not accessible or translatable.

---

<div class="post-metadata">

### Author: ![agemo](https://avatars.discourse-cdn.com/v4/letter/a/ac91a4/32.png) [@agemo](https://meta.discourse.org/u/agemo)
#### Post date: [July 21, 2022, 4:57pm UTC](https://meta.discourse.org/t/another-custom-signup-query/233560/3 "2022-07-21T16:57:41Z")

</div>

Oh for goodness sakes… I’m a dope! 🤣
