Need To Change Button/Icon Color

  • Unknown's avatar

    Need to change my button/icon color on my WordPress site-
    the theme automatically comes with a red background for the button with black font… I want to change these buttons & social media icons to a grey background with white lettering. Does anyone know how I can do this? I’m currently using the gateway theme but will glady switch if it means that I can get the colors to be how I want :)

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi @lovestylehome, the following custom CSS will do that for you. You can edit the color code as desired for the background color.

    #blog_subscription-3 input[type="submit"] {
      background-color: #555;
      color: #fff
    }
    .widget_wpcom_social_media_icons_widget a::before, .widget_tag_cloud a, .wp_widget_tag_cloud a, .header-bg, html input[type="button"], input[type="reset"], input[type="submit"], button, .button, #infinite-handle span {
      background-color: #555;
      color: #fff;
    }
  • The topic ‘Need To Change Button/Icon Color’ is closed to new replies.