Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>We will probably need to see the site to give you a good answer, but here are a few possible ideas to troubleshoot.</p> <ol> <li>Do the users have JavaScript enabled? without it that script wont work at all. The only way to avoid this is to not use html5 which isn't a great option unless ie8 support is very important for the users of the site.</li> <li>Are there any JS errors on the page? It could be preventing it from loading.</li> <li>Try Downloading that js file and loading it locally instead of from google. Sometimes cross domain requests can cause problems. I've never had a problem with loading it from google, but you may want to try. Some browsers treat it differently. see Wikipedia: <a href="http://en.wikipedia.org/wiki/Same_origin_policy" rel="nofollow noreferrer">Same origin policy</a></li> <li>You also may want to make sure that file is the problem. Maybe there is some other ie weirdness going on. ie8 wont recognize html5 elements so it doesn't style them. if that's the layout problem you're getting then it probably is that file.</li> </ol> <p>one other thing. Don't forget to use an html5 reset in your stylesheet to set the html5 elements in ie to 'display:block'. They may not work right without it.</p> <p><strong>EDIT:</strong> Heres an example of what I mentioned in the comment.</p> <p>In the HTML file:</p> <pre><code>&lt;div class="container"&gt; &lt;section id="left"&gt;&lt;!-- sidebar --&gt;&lt;/section&gt; &lt;article&gt;&lt;!-- content --&gt;&lt;/article&gt; &lt;/div&gt; </code></pre> <p>In the stylesheet:</p> <pre><code>.container{ position:relative; } section#left{ position:absolute; top:0; left:0; } </code></pre>
    singulars
    1. This table or related slice is empty.
    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. This table or related slice is empty.
    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