Signature colours

Admin CP -> Appearance -> Templates -> message.css

Replace this code:

Code:
		.message .signature
		{
			@property "messageSignature";
			font-size: 9pt;
			padding: 5px 0 0;
			margin-top: 5px;
			border-top: 1px dashed @primaryLighterStill;
			@property "/messageSignature";
		}

...with this:

Code:
		.message .signature
		{
			@property "messageSignature";
			background-color: #efefef;
			font-size: 9pt;
			padding: 5px;
			margin-top: 5px;
			border-radius: 4px;
			@property "/messageSignature";
		}

This is the result (my signature is shaded gray):

Screen shot 2010-11-07 at 12.51.33 PM.webp

Hopefully that helps.
 
Top Bottom