XF 1.4 Trouble changing signature line

DaveA

Member
I'm trying to change the color of the signature line. It is a white dashed lined.

I go into Message Elements and Signature to change the color but it doesn't take effect. The color of the line is still white. Any ideas?
 

Attachments

  • signature.webp
    signature.webp
    37.8 KB · Views: 17
Hey there,

this should do it (I'm not sure what color you're looking for)

Code:
.message .signature {
    font-size: 9pt;
    color: rgb(150, 150, 150);
    padding: 5px 0 0;
    margin-top: 5px;
    border-top: 1px dashed Colorhere;
}
 
Top Bottom