Code: Select all
/* Post signature */
.signature {
margin-top: 1.5em;
padding-top: 0.2em;
font-size: 1.1em;
border-top: 1px solid transparent;
clear: left;
line-height: 140%;
overflow: hidden;
width: 100%;
}
Code: Select all
/* Post signature */
.signature {
margin-top: 1.5em;
padding-top: 0.2em;
font-size: 1.1em;
border-top: 1px solid transparent;
clear: left;
line-height: 140%;
overflow: hidden;
width: 100%;
color: red;
}
Code: Select all
.signature {
border-top-color: #e8e1cf;
color: #c05555; }
color: #xxxxxx
(# and the color code from the picture)
Note: if a user specifies a color for the signature in ucp, the color chosen by the user will be displayed for his signature. Unless you disable the BBCode tag: Allow BBCode in signatures:
in acp (ACP - GENERAL - Signature settings on the left).Code: Select all
/* Post signature */
.signature {
border-top-color: #CCCCCC;
color: #c05555;
}
On another post, i mentioned that the rigamarole i had to go through--THOSE instructions were insane. Several pieces of software to download and confusing, vague instructions...SO I opted to directly edit css anyway (as i've done a few times before in the past without a problem).DO NOT EDIT stylesheet.css!
Edit .scss files instead. See http://www.artodia.com/phpbb-31-tutoria ... ile-theme/
If you have any questions, please ask on support forum at http://www.artodia.com/forums/
Tastenplayer wrote: ↑Sat Jun 13, 2020 3:08 pmlatte - stylesheet.css - line 5022
Choose your color for the second lineCode: Select all
.signature { border-top-color: #e8e1cf; color: #c05555; }
color: #xxxxxx
(# and the color code from the picture)
websafe_color_chart.jpg
Note: if a user specifies a color for the signature in ucp, the color chosen by the user will be displayed for his signature. Unless you disable the BBCode tag:Allow BBCode in signatures:
in acp (ACP - GENERAL - Signature settings on the left).
To change the color for the signature in Prosilver:
color.css line 397Code: Select all
/* Post signature */ .signature { border-top-color: #CCCCCC; color: #c05555; }
Thank you, ELias. That worked to change the color. I am using Latte theme, but i searched the code for "sig" and found the proper area. Appreciate that!
Code: Select all
/* Post signature */
.signature {
color: #c05555;
}
// $post-signatur-text-color: #c05555 !default; // Signatur color
Code: Select all
Latte
Style path: styles/latte/ SCSS files have been recently updated. Recompilation might be needed.
Compile theme
purche the cache - The change was accepted and is displayed in my adapted style.Did it work or did it not work?kellijaebaeli wrote: ↑Sat Jun 13, 2020 8:14 pmThank you, ELias. That worked to change the color. I am using Latte theme, but i searched the code for "sig" and found the proper area. Appreciate that!
Elias wrote: ↑Sun Jun 14, 2020 12:32 pmDid it work or did it not work?kellijaebaeli wrote: ↑Sat Jun 13, 2020 8:14 pmThank you, ELias. That worked to change the color. I am using Latte theme, but i searched the code for "sig" and found the proper area. Appreciate that!
I'm confused.