Hi Sutriano,
Thanks for writing in!
Please replace this CSS, that you have added from the old post
.x-navbar-wrap:after {
position: absolute;
content: "";
height: 5px;
width: 100%;
z-index: 999999;
background: rgba(243,226,199,1);
background: -moz-linear-gradient(left, rgba(243,226,199,1) 0%, rgba(243,226,199,1) 40%, rgba(182,141,76,1) 66%, rgba(193,158,103,1) 99%, rgba(233,212,179,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(243,226,199,1)), color-stop(40%, rgba(243,226,199,1)), color-stop(66%, rgba(182,141,76,1)), color-stop(99%, rgba(193,158,103,1)), color-stop(100%, rgba(233,212,179,1)));
background: -webkit-linear-gradient(left, rgba(243,226,199,1) 0%, rgba(243,226,199,1) 40%, rgba(182,141,76,1) 66%, rgba(193,158,103,1) 99%, rgba(233,212,179,1) 100%);
background: -o-linear-gradient(left, rgba(243,226,199,1) 0%, rgba(243,226,199,1) 40%, rgba(182,141,76,1) 66%, rgba(193,158,103,1) 99%, rgba(233,212,179,1) 100%);
background: -ms-linear-gradient(left, rgba(243,226,199,1) 0%, rgba(243,226,199,1) 40%, rgba(182,141,76,1) 66%, rgba(193,158,103,1) 99%, rgba(233,212,179,1) 100%);
background: linear-gradient(to right, rgba(243,226,199,1) 0%, rgba(243,226,199,1) 40%, rgba(182,141,76,1) 66%, rgba(193,158,103,1) 99%, rgba(233,212,179,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3e2c7', endColorstr='#e9d4b3', GradientType=1 );
}
With this
.x-navbar-wrap:after {
position: absolute;
content: "";
height: 5px;
width: 100%;
z-index: 4;
background: rgba(243,226,199,1);
background: -moz-linear-gradient(left, rgba(243,226,199,1) 0%, rgba(243,226,199,1) 40%, rgba(182,141,76,1) 66%, rgba(193,158,103,1) 99%, rgba(233,212,179,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(243,226,199,1)), color-stop(40%, rgba(243,226,199,1)), color-stop(66%, rgba(182,141,76,1)), color-stop(99%, rgba(193,158,103,1)), color-stop(100%, rgba(233,212,179,1)));
background: -webkit-linear-gradient(left, rgba(243,226,199,1) 0%, rgba(243,226,199,1) 40%, rgba(182,141,76,1) 66%, rgba(193,158,103,1) 99%, rgba(233,212,179,1) 100%);
background: -o-linear-gradient(left, rgba(243,226,199,1) 0%, rgba(243,226,199,1) 40%, rgba(182,141,76,1) 66%, rgba(193,158,103,1) 99%, rgba(233,212,179,1) 100%);
background: -ms-linear-gradient(left, rgba(243,226,199,1) 0%, rgba(243,226,199,1) 40%, rgba(182,141,76,1) 66%, rgba(193,158,103,1) 99%, rgba(233,212,179,1) 100%);
background: linear-gradient(to right, rgba(243,226,199,1) 0%, rgba(243,226,199,1) 40%, rgba(182,141,76,1) 66%, rgba(193,158,103,1) 99%, rgba(233,212,179,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3e2c7', endColorstr='#e9d4b3', GradientType=1 );
}
Hope this helps!