This site is full width and adapts to the size of the browser window. However, as soon as the browser window is smaller than the displayed content, the title will be disabled after scrolling to the right.
By default, the default width of 100% only works for the width of the browser window, not the page width! The same seems to apply on the vertical axis.
Example
#title
{
height: 50px;
color: white;
background-color: #404040;
}
#content
{
width: 800px;
background-color: #f0f0f0;
}
<div id="title">
TITLE
</div>
<div id="content">
CONTENT
</div>
Run codeHide result
Actual result
This is what it looks like when the page scrolls to the left.


(For simplicity and privacy, non-issue content is censored.)
source
share