You can change the font color for a header on Advocate share page by following these steps:
1. Go to appropriate campaign
2. Navigate to Editor tab
3. Switch to the HTML & CSS Editor
4. In “Advocate views CSS” section find the following code:
h1 {
font-size: 41px;
font-weight: bold;
line-height: 1.05;
text-transform: uppercase;
word-break: break-word;
5. Add there “color: #xxxxx” (where “x” is your needed color code)
Ex.:
h1 {
font-size: 41px;
font-weight: bold;
line-height: 1.05;
text-transform: uppercase;
word-break: break-word;
color: #9153a9;
6. Click “Save changes”