Tab hover color in Vision theme

  • Unknown's avatar

    Question: How to change tab hover color in Vision theme using CSS editor from Orange to #EC008B.

    The blog I need help with is make-lite.com.

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

  • Unknown's avatar

    Vision is a premium theme, so it has dedicated support at http://premium-themes.forums.wordpress.com/forum/vision

    To change the tab hover color of submenu items in the Vision theme, add this to your Appearance > Customize > CSS editor:

    /* submenu background color */
    .masthead-wrapper .menu li ul {
    	background: #ec008b;
    }
    
    /* top arrow color */
    .masthead-wrapper .menu li ul:before {
      border-bottom-color: #ec008b;
    }
    
    /* border between submenu items color */
    .masthead-wrapper .menu li ul li {
    	border-bottom: 1px solid hotpink;
    }
  • The topic ‘Tab hover color in Vision theme’ is closed to new replies.