Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I have just been to <a href="http://www.artotek.fi/en/" rel="nofollow">http://www.artotek.fi/en/</a> and can see that there is no style sheet being successfully called. If this is the right domain then I can see a major problem stopping the stylesheet from being successfully called:</p> <p>You currently have the following code</p> <pre><code>&lt;noscript&gt; &lt;link rel="stylesheet" href="skel-noscript.css" &gt; &lt;link rel="stylesheet" href="ftp://artotek@ftp.artotek.fi/public/html/css/style.css" &gt; &lt;link rel="stylesheet" href="ftp://artotek@ftp.artotek.fi/public/html/css/style-desktop.css" &gt; &lt;link rel="stylesheet" href="ftp://artotek@ftp.artotek.fi/public/html/css/noscript.css" &gt; &lt;link rel="stylesheet" href="ftp://artotek@ftp.artotek.fi/public/html/css/style-mobile.css" &gt; &lt;/noscript&gt; </code></pre> <p>May I suggest firstly moving the <code>&lt;link&gt;</code> tag out of the <code>&lt;noscript&gt;</code> tag. Secondly, those URL's look a bit suspect. I dug around a bit and it looks to me like you want the following URL <a href="http://artotek.fi/css/style.css" rel="nofollow">http://artotek.fi/css/style.css</a></p> <p>So... my final suggestion: replace the above block with this:</p> <pre><code>&lt;link type="text/css" rel="stylesheet" href="http://artotek.fi/css/style.css" &gt; &lt;link type="text/css" rel="stylesheet" href="http://artotek.fi/css/style-desktop.css" &gt; &lt;link type="text/css" rel="stylesheet" href="http://artotek.fi/css/noscript.css" &gt; &lt;link type="text/css" rel="stylesheet" href="http://artotek.fi/css/style-mobile.css" &gt; </code></pre>
 

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