Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Looks like a few things are going on here.. First off somewhere in css you have a 'scroll' or 'auto' property set that's allowing page height to change. Second, the vid with the footer doesn't have a set width and height set from what it looks like.. Instead it's just filling in whatever space the center div with text isn't filling.. So likely that doesn't have a defined height either. I'd suggest also making sure the bottom footer is set to 'bottom:0px' -Provide some css and html code for us to help more?</p> <p>Add this code to footer.clearfix:</p> <pre><code> margin-bottom: 0px; height: 30px; </code></pre> <p>And inside of the content-wrapper stick:</p> <pre><code> height: 100%; overflow: auto; </code></pre> <p>It's going to add a scroll bar, but it will make your problem really evident if you do. The issue is you're DUPLICATING code. Hardcore. That footer is either recreating itself each time you click a tab somewhere, instead of sitting at the bottom hardcoded a single time or else you have a footer inside of 'footer' and inside of 'page'. Thinking it's the 2nd one... And the one in 'page' is causing issues. If you intend to duplicate it and just want the page size standarad, then just add the content-wrapper changes. If the footer is suppose to be a standard size, add the footer.clearfix changes to get an idea of your issue.</p> <p>Recommending you install Firebug for your browser if you haven't already.. It will allow you to 'inspect' elements and change css to figure out what's going on faster.</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