Okay
  Public Ticket #2413247
change testimonial font and color
Closed

Comments

  • paprikadesignlab started the conversation

    Hello

    I would like to change the size and color on the title of the person on testimonial, how can i do that?

  •  8,884
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    .nectar_single_testimonial span.wrap >span:first-child {
        font-size: 31px;
        color: #f8a551 !important;
    }

    Thanks


    ThemeNectar Support Team 

  • paprikadesignlab replied

    Hi Tahir

    Thank you, but this code changed the name and not the title color and size

    Do you have another option for the title?

    in this case of this example its intuitive brand strategist


    thank you

  •  2,979
    Andrew replied

    Hi there,

    Try the following:

    .nectar_single_testimonial .wrap .title {
        font-size: 24px;
        color: red !important;
    }
    

    Hope this helps.