# איך לערוך את טקסט WELCOME בנושא AIR

**URL:** https://meta.discourse.org/t/how-to-edit-welcome-text-in-air-theme/354617
**Category:** Support
**Tags:** air-theme
**Created:** [26 בפברואר,‏ 2025,‏ 1:05pm UTC](https://meta.discourse.org/t/how-to-edit-welcome-text-in-air-theme/354617 "2025-02-26T13:05:13Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![noid](https://avatars.discourse-cdn.com/v4/letter/n/7feea3/32.png) [@noid](https://meta.discourse.org/u/noid)
#### Post date: [26 בפברואר,‏ 2025,‏ 1:05pm UTC](https://meta.discourse.org/t/how-to-edit-welcome-text-in-air-theme/354617/1 "2025-02-26T13:05:13Z")

</div>

Hello, I am very new to a self hosted discourse so might be missing something obvious. How do I edit WELCOME TO OUR COMMUNITY text in Air theme? If I go to site texts section and type this text to bring a string, it does not bring a such string but similar texts. Thanks!

 ![Screenshot 2025-02-26 at 15.04.46](https://global.discourse-cdn.com/meta/original/4X/6/a/e/6aef30c392399372a7d6058621b1a416ff2e5cb8.jpeg)

---

<div class="post-metadata">

### Author: ![Arkshine](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/arkshine/32/298682_2.png) [@Arkshine](https://meta.discourse.org/u/Arkshine)
#### Post date: [26 בפברואר,‏ 2025,‏ 2:18pm UTC](https://meta.discourse.org/t/how-to-edit-welcome-text-in-air-theme/354617/2 "2025-02-26T14:18:20Z")

</div>

Hey, welcome noid!

This text is part of a Search Banner theme component included by default with the Air Theme.

Go to: Admin → Components  
Search for “search banner”, and you can see below the settings the translation you’re looking for:

 ![The image displays a webpage interface for "discourse-search-banner," showcasing components that can be customized within a theme. (Captioned by AI)](https://global.discourse-cdn.com/meta/original/4X/a/0/d/a0d7d7c13c4d2ac5407adc2d19ae90113189152c.png)

 ![The image shows a web page template with a translation dropdown menu set to English (US), a placeholder text "search_banner.headline" and a larger text area containing the phrase "Welcome to our community." (Captioned by AI)](https://global.discourse-cdn.com/meta/original/4X/f/c/9/fc97ae12182317495812e5156d0bdd3f3e907f95.png)

---

<div class="post-metadata">

### Author: ![noid](https://avatars.discourse-cdn.com/v4/letter/n/7feea3/32.png) [@noid](https://meta.discourse.org/u/noid)
#### Post date: [26 בפברואר,‏ 2025,‏ 3:23pm UTC](https://meta.discourse.org/t/how-to-edit-welcome-text-in-air-theme/354617/3 "2025-02-26T15:23:21Z")

</div>

Awesome! Thank you very much, that worked well changing the wording. But would it possible to change a font size or even color?

---

<div class="post-metadata">

### Author: ![Arkshine](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/arkshine/32/298682_2.png) [@Arkshine](https://meta.discourse.org/u/Arkshine)
#### Post date: [26 בפברואר,‏ 2025,‏ 4:00pm UTC](https://meta.discourse.org/t/how-to-edit-welcome-text-in-air-theme/354617/4 "2025-02-26T16:00:50Z")

</div>

It’s possible. There is no setting, but you can add some CSS in your theme or another new theme component:  
For example:

```css
.search-banner .custom-search-banner-wrap {
  h1 {
     /* CSS for the title */
     font-size: var(--font-up-6);
     color: aliceblue;  
  }

  p {
     /* CSS for the description */
  }
}

```
