pankaj83
Hi
This is because when its sticky it not use the same style
Find this code in custom.css
.t3-mainnav.affix {
position: fixed;
top: 0px;
z-index: 999;
float: none;
}
Replace it with
.t3-mainnav.affix {
position: fixed;
top: 0px;
z-index: 999;
float: none;
width: inherit;
}