I have my website in asp.net with master page. I have used below css for header div of my website to make it fixed.
.header{
z-index: 3001;
position:fixed;
top:0px;left:0px;
background-color: white;
width:100%;height:150px;
}
This is working fine for desktop. But on mobile, I can only see my 50% of width of the header. On the right side of 50%, nothing is cmg. As in just white background is cmg. On the right side, I have a button which when I click is working. To say, controls are
not visible but they are working if u manage to click at the exact place. Any fix for this?
I want to add that this problem is coming only in windows phone. So need fix for that.