Okay
  Public Ticket #3428271
Team Member close modal update
Closed

Comments

  •  1
    prodesignwv started the conversation

    I need to be able to add some descriptive text to the close modal button. Where can I find the code to make that change?

  •  8,839
    Tahir replied

    Hey Again,

    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-close-indicator .visible:before {
        top: -20px;
        content: "Close";
        width: auto;
        position: relative;
        color: #fff;
        display: block;
        height: 0px;
        font-size: 14px;
    }

    Thanks


    ThemeNectar Support Team 

  •  1
    prodesignwv replied

    Works perfectly. Thank you!