Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I think you are looking at the background on the content-wrapper div as shown below. Since the width of that element is set to 100%, and the center-block div has a fixed width of 1000px, if you collapse the window to a width that is less than the 1000px the content wrapper will not display and the background will effectively disappear.</p> <p>HTML Element...</p> <pre><code>&lt;div id="content-wrapper"&gt; &lt;div class="center-block"&gt; .... &lt;/div&gt; &lt;/div&gt; </code></pre> <p>Relevant CSS:</p> <pre><code>#content-wrapper { margin: 0 auto; width: 100%; background-image: url(/images/content-background.png); background-position: center top; background-repeat: repeat-y; } #content-wrapper .center-block { width: 1000px; } </code></pre> <p>With regards to the header, you will see that it has a declaration of</p> <pre><code>#header { width : 100% ... } </code></pre> <p>This will set the width of the element to with width of the parent container - in this case it is the active window (in your case is 900px or less). However, since there are other elements on the page which specify a width of 1000px or more, the content inside of those divs appears beyond that. </p> <p>You could have the page expand by setting the width of body to 1000px (or whatever the maximum width of the page is) in which case, the header would expand to 100% of that size. Or, you could surround the whole content with a relatively positioned , and then the 100% directive would indicate 100% of the width of the surrounding div and not just the window. </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload