Alerts

Krysteo

Member
I would like to change the colors of the Alerts that displays on the left bottom of the page (see image). Where in the template can I do that ?

Thanks

zClip0001.webp
 
The original code is in xenforo_overlay.css.

Look for:

#StackAlerts .stackAlertContent

You could copy and paste that code into EXTRA.CSS and amend it to your liking in there.

In EXTRA.css I have

Code:
#StackAlerts .stackAlertContent
{
border: solid 2px @primaryLighterStill;
background: #e03030;
color: #fff;
}

This gives it a nice red colour.

alert.webp
 
Top Bottom