• Hi !

    i found out how to change the hover color of the title thanks to @rojina, but do you know how i can change
    -the hover color of the social media links
    -the articles on the home page
    -the primary menu
    -all the links (read more, etc.)

    Thank you all !

    • This topic was modified 7 years, 5 months ago by camillesd.
Viewing 1 replies (of 1 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi, since you did not provide a link to your site, I’m working off the theme demo site.

    To change the hover color on the social icons, use the following additional CSS.

    .social-menu a:hover::before {
      color: lime;
    }

    To change the orangish hover color on the posts, add the following and edit the color code as desired.

    .js .infinite-scroll .card:hover {
      background: #99ff00;
    }

    For the hover color on the menu items use this

    .main-navigation ul > li:hover > a, .main-navigation ul ul > li:hover > a {
      color: #ff0099 !important;
    }

    This should catch all the hover colors on the links other than above, including the site title.

    a:hover, a:focus, a:active {
      color: #001aff !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘change orange color’ is closed to new replies.