Text Color Question

Gabby

Well-known member
What control fixes this? I need the text to be a dark color obviously. Tried everything.

Thank you.

xf3.webp
 
What control fixes this? I need the text to be a dark color obviously. Tried everything.

Thank you.

View attachment 33375
Sorry for a late reply:

Edit Template: xenforo_popup.css

Put in:
Code:
    .PopupControl:hover,
    .PopupContainerControl:hover a{
        color: black;
        text-shadow: 1px 1px 2px blue;
    }

Change Black & Blue to your own colours.

You can put it there or in the extra.css if you wish. Hope that helps.
 
Top Bottom