I also found the “gradient” too much like just 2 colors with no gradient. Played around for several hours, and this is working for me:
/********** Decrease menu container height, smooth out gradients ************/
#search-text-box, .menu-header {
/* Permalink – use to edit and share this gradient:
https://colorzilla.com/gradient-editor/#e1e1e1+0,ececec+46,d4d4d4+71,d4d4d4+71,c7c7c7+94,d9d9d9+100 */
background: #e1e1e1 !important; /* Old browsers */
background: -moz-linear-gradient(top, #e1e1e1 0%, #ececec 46%, #d4d4d4 71%, #d4d4d4 71%, #c7c7c7 94%,
#d9d9d9 100%) !important; /* FF3.6-15 */
background: -webkit-linear-gradient(top, #e1e1e1 0%,#ececec 46%,#d4d4d4 71%,#d4d4d4 71%,#c7c7c7 94%,
#d9d9d9 100%) !important; /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #e1e1e1 0%,#ececec 46%,#d4d4d4 71%,#d4d4d4 71%,#c7c7c7 94%,
#d9d9d9 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#e1e1e1′,
endColorstr=’#d9d9d9′,GradientType=0 ) !important; /* IE6-9 */
}
/************** Reverse the gradient for the active page menu item ********************/
.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-item.page_item,
.current-menu-item {
/* Permalink – use to edit and share this gradient:
https://colorzilla.com/gradient-editor/#d9d9d9+0,c7c7c7+6,d4d4d4+29,d4d4d4+29,ececec+54,e1e1e1+100 */
background: #d9d9d9; /* Old browsers */
background: -moz-linear-gradient(top, #d9d9d9 0%, #c7c7c7 6%, #d4d4d4 29%, #d4d4d4 29%,
#ececec 54%, #e1e1e1 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #d9d9d9 0%,#c7c7c7 6%,#d4d4d4 29%,#d4d4d4 29%,
#ececec 54%,#e1e1e1 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #d9d9d9 0%,#c7c7c7 6%,#d4d4d4 29%,#d4d4d4 29%,
#ececec 54%,#e1e1e1 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#d9d9d9′,
endColorstr=’#e1e1e1′,GradientType=0 ); /* IE6-9 */
}
/*********************** Done styling menu bar ***************************************/