Для добавления прокрутки в теле overflow-x:scroll;
Появится горизонтальная полоса прокрутки.
О заголовке вы можете использовать position:fixed;
и width:100%
и z-index:10;
, поэтому окончательный CSS для #headerwrap
будет:
#headwrap {
background-color: #1C1C1C;
position: fixed;
width: 100%; /* to take the width of all screen */
z-index: 10; /* In small screens the images override the header */
}