Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1186159

    koosang153
    Participant

    my site is http://www.naver.design

    and I want my highlight color to be #5F97B3. with white font color when it’s highlighted.
    Please let me know how to do 🙂

    Thank you! 🙂

    #1186186

    Rue Nel
    Moderator

    Hello There,

    Thanks for writing in! Which highlight color? In the menu or in the body? Please be advised that all of these colors can be change in the customizer, Appearance > Customize > Header > Links – Text and Appearance > Customize > Typography > Site Links.

    Hope this helps. Please let us know how it goes.

    #1186236

    koosang153
    Participant

    Highlight color for body text,,

    http://naver.design/wp-content/uploads/2016/09/Screen-Shot-2016-09-22-at-6.50.21-PM-1.png

    If you see there, the color I want is : 5F97B3 and text in white, but I can’t make it although I looked both Appearance > Customize > Header > Links – Text and Appearance > Customize > Typography > Site Links.

    suggestion you gave me. Plase help!

    ThanxX

    #1186326

    Christian
    Moderator

    I see. Please add the code below in your Appearance > Customize > Custom > Global CSS

    ::selection {
      background: #5F97B3;
    }
    ::-moz-selection {
      background: #5F97B3;
    }

    Thanks.

    #1186463

    koosang153
    Participant

    since the color 5F97b3 is dark color, when it’s highlighted, the font needs to be white to be visible,
    then, what should I add to the custom css?

    #1186553

    Joao
    Moderator

    Hi there,

    Please update your code to:

    
    ::selection {
      background: #5F97B3;
      color: white;
    }
    ::-moz-selection {
      background: #5F97B3;
      color: white;
    }

    Hope that helps,

    Joao