Hello
The menu is sticky when scrolling down, it's defined with this style:
.t3-header.affix {
background-image: -webkit-linear-gradient(top, #5c58dc 0%, #4743d8 100%);
background-image: -o-linear-gradient(top, #5c58dc 0%, #4743d8 100%);
background-image: linear-gradient(to bottom, #5c58dc 0%, #4743d8 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5c58dc', endColorstr='#ff4743d8', GradientType=0);
background-repeat: repeat-x;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
padding-top: 12px;
padding-bottom: 12px;
}
You can override this by changing to your desired color.
The same with section "Never Stop Listing"
.t3-sections .t3-module.mod-bg-brand-primary {
background-image: -webkit-linear-gradient(top, #5c58dc 0%, #4743d8 100%);
background-image: -o-linear-gradient(top, #5c58dc 0%, #4743d8 100%);
background-image: linear-gradient(to bottom, #5c58dc 0%, #4743d8 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5c58dc', endColorstr='#ff4743d8', GradientType=0);
background-repeat: repeat-x;
}