Okay
  Public Ticket #4501162
text colour in team bio
Closed

Comments

  •  14
    Hadi started the conversation

    Hello team - I wonder if there's a way to change the text colour in the bio template from grey to white.

    Thanks

    Hadi

    Attached files:  Screenshot 2025-10-01 at 11.52.33.png

  •  9,505
    Tahir replied

    Hi Again,

    Thanks for reaching out! .

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .team-member[data-style=bio_fullscreen_alt] .team-meta p {
        color: #fff !important;
    }

    Thanks


     Salient Support Team


  •  14
    Hadi replied

    Thanks Tahir - it worked! On a related note, is there a way to change the size, colour or shape of the arrow at the bottom of the bio? 

    Attached files:  Screenshot 2025-10-01 at 12.14.34.png

  •  9,505
    Tahir replied

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .nectar-cta[data-style=arrow-animation] svg, .nectar-cta[data-style=arrow-animation] svg polyline {
        stroke: #fff !important;
    }
    
    .nectar-cta[data-style=arrow-animation] .line {
        background-color: #fff !important;
    }

    Thanks


     Salient Support Team


  •  14
    Hadi replied

    Many thanks, Tahir! All looks good now.