Okay
  Public Ticket #3188286
titile underline color change
Closed

Comments

  • klausfullstack started the conversation

    Hi

    I just want to ask how to change the color of underline in my title. I tried to find it for long time. Could you please show me the place that  I can change it. Thanks!

    Attached files:  14005642.png

  •  2,958
    Andrew replied

    Hi klausfullstack,

    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):

    #header-outer .sf-menu li ul li a:hover {
        text-decoration: underline;
        text-decoration-thickness: 2px !important;
        text-decoration-color: #000000 !important;
    }
    

    Thanks