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?
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?
Do you refer to this?
#reply-control {
[…]
box-shadow: 0 -1px 40px rgb(0 0 0 / 12%);
}
Yes!
How do I edit this?
Customize your theme, and in the CSS tab, write:
#reply-control {
box-shadow: none;
}
Or whatever value you want.
As mentioned, on the element #reply-control
there’s the following 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.