• https://jennifertjones.apps-1and1.com/

    I am having trouble changing the color of the “search” button in the bottom sidebar, and the color of the hover links in the right sidebar. I changed them in the “colors” section, but they didn’t actually change over to the website. What can I do to make sure that the colors change to what I want them to be?

    • This topic was modified 7 years, 8 months ago by beardbrittney.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    hi @beardbrittney

    you can target the search button with CSS (add code to Customizer / Additional CSS):

    input.expanded.small.button {
        background: #da2566;
    }

    for sidebar links hover color:

    #right-sidebar .widget a:hover {
        color: #da2566;
    }

    Set your colors to whatever you like of course.

    regards
    Imre

    Thread Starter beardbrittney

    (@beardbrittney)

    The color change for the button worked, but the hover color didn’t work. Is there something else that I can use?

    Theme Author Shaped Pixels

    (@shaped-pixels)

    try this instead for hover

    
    #right-sidebar .widget a:hover {
        color: #da2566!important;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing hover link and button colors’ is closed to new replies.