• Resolved tossytm

    (@tossytm)


    hello, I would like to change the sidebars ( primary & secondary) text link colors ( before and during hover). which code can I use please, help. I would like the text links to be blue.

    help

Viewing 2 replies - 1 through 2 (of 2 total)
  • Add this to your custom CSS plugin or child style.css:

    .widget a {
        color: rgb(0, 0, 0); // will change text link color to black before hover
    }
    
    .widget a:hover {
        color: rgb(255, 255, 255); // will change text link color to white during hover
    }

    Thread Starter tossytm

    (@tossytm)

    thanks worked!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sidebars text link color – help’ is closed to new replies.