I am developing this website.
The problem I am facing is a space on the right side of the header when zoomed in. I did all kinds of things, but could not fill the title bar with black in white.
Corresponding CSS: (I am not pasting all the code as it is too long, you can find it on the website)
header { float:left; width:100%; height:700px; background:#000000; -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px; -moz-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px; } .header_main { background: #000000; -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px; -moz-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px; box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 5px; float:left; height:800px; width:100%; }
source share