# מה זה הפס המוזר הזה סביב ה"יצירת נושא"?

**URL:** https://meta.discourse.org/t/what-is-this-strange-bar-around-my-create-topic/217290
**Category:** Development
**Tags:** css
**Created:** [6 בפברואר,‏ 2022,‏ 10:55pm UTC](https://meta.discourse.org/t/what-is-this-strange-bar-around-my-create-topic/217290 "2022-02-06T22:55:36Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![CookieDev](https://avatars.discourse-cdn.com/v4/letter/c/aca169/32.png) [@CookieDev](https://meta.discourse.org/u/CookieDev)
#### Post date: [6 בפברואר,‏ 2022,‏ 10:55pm UTC](https://meta.discourse.org/t/what-is-this-strange-bar-around-my-create-topic/217290/1 "2022-02-06T22:55:36Z")

</div>

I recently noticed there is this strange very hard to see bar around my “create topic” box.

Is there anything I can do to get rid of this?

 ![image](https://global.discourse-cdn.com/meta/original/3X/1/c/1c2bcb617480133971b95eab8c5636b0d89c9b4d.png)

---

<div class="post-metadata">

### Author: ![Canapin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/canapin/32/119591_2.png) [@Canapin](https://meta.discourse.org/u/Canapin)
#### Post date: [6 בפברואר,‏ 2022,‏ 11:05pm UTC](https://meta.discourse.org/t/what-is-this-strange-bar-around-my-create-topic/217290/2 "2022-02-06T23:05:09Z")

</div>

Do you refer to this?

```css
#reply-control {
  […]
  box-shadow: 0 -1px 40px rgb(0 0 0 / 12%);
}

```

---

<div class="post-metadata">

### Author: ![CookieDev](https://avatars.discourse-cdn.com/v4/letter/c/aca169/32.png) [@CookieDev](https://meta.discourse.org/u/CookieDev)
#### Post date: [6 בפברואר,‏ 2022,‏ 11:09pm UTC](https://meta.discourse.org/t/what-is-this-strange-bar-around-my-create-topic/217290/3 "2022-02-06T23:09:11Z")

</div>

Yes!

How do I edit this?

---

<div class="post-metadata">

### Author: ![Canapin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/canapin/32/119591_2.png) [@Canapin](https://meta.discourse.org/u/Canapin)
#### Post date: [6 בפברואר,‏ 2022,‏ 11:18pm UTC](https://meta.discourse.org/t/what-is-this-strange-bar-around-my-create-topic/217290/4 "2022-02-06T23:18:34Z")

</div>

Customize your theme, and in the CSS tab, write:

```css
#reply-control {
  box-shadow: none;
}

```

Or whatever value you want. 🖌

---

<div class="post-metadata">

### Author: ![seanblue](https://avatars.discourse-cdn.com/v4/letter/s/dc4da7/32.png) [@seanblue](https://meta.discourse.org/u/seanblue)
#### Post date: [6 בפברואר,‏ 2022,‏ 11:24pm UTC](https://meta.discourse.org/t/what-is-this-strange-bar-around-my-create-topic/217290/5 "2022-02-06T23:24:43Z")

</div>

As mentioned, on the element `#reply-control` there’s the following css:

```css
box-shadow: 0 -1px 40px rgb(0 0 0 / 12%);

```

When I toggled that style off, the reply box blended into the background, so I imagine the style is there to give the appearance of the reply box “popping off” the screen so to speak.
