Been looking for what colors the text and dismiss "X" in the XF popups. Any hints or pointers? CSS or style setting?
Nothing here seams to control this and I do not see anything in extra.less either. On F12 I cannot find the CSS element.
Time for a revisit. I am having an issue with the 'a' reference font color in the .overlay-title div. Can you suggest CSS to add the color change and add an underline on hover? @CedricV
Probably a better way but this works except it also overrides the closer X color.
CSS:
// Popup Title and Dismiss Color
.overlay-title{color: orange;}.overlay-title a{color: red;text-decoration: underline;}.overlay-titleCloser{color: orange;}
Tie post...
TY, I changed the code to this while you were replying and this is the result.
CSS:
// Popup Title and Dismiss Color
.overlay-title{color: orange;}.overlay-title a{color: red;text-decoration: underline;}.overlay-titleCloser.js-overlayClose{color: orange;}