Amaury
Well-known member
I believe that may actually be the same case here.
Anyway, this button is in multiple areas, such as when deleting a profile comment, but for this example, I will use the thread route.
Go into a thread and do the following:
Thread Tools > Edit Title
The Delete Thread button has hard-coded black text.
In xenforo_overlay.css:
Text needs to be controlled by a style property / variable -- one of the button ones, obviously.
Anyway, this button is in multiple areas, such as when deleting a profile comment, but for this example, I will use the thread route.
Go into a thread and do the following:
Thread Tools > Edit Title
The Delete Thread button has hard-coded black text.
In xenforo_overlay.css:
Code:
.xenOverlay .formOverlay a.button
{
@property "formOverlayButton";
color: black;
@property "/formOverlayButton";
}
Text needs to be controlled by a style property / variable -- one of the button ones, obviously.