Thursday, 15 April 2010

html - stylesheet in other directory with noscript -



html - stylesheet in other directory with noscript -

i creating website in html, , face problem.

i have css folder, , want able access every directory

root:

/css - /skel-noscript.css" - /skel-noscript.css" /js - init.js - skel.min.js - skel-panel.min.js - html5shiv.js /downloads -/download.html /downloads.html /index.html

...

now have problem when seek access stylesheets in downloads/download.html

my <head> code:

<head> <title>title</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="description" content="" /> <meta name="keywords" content="" /> <link href='http://fonts.googleapis.com/css?family=open+sans:400,300,600,700,800' rel='stylesheet' type='text/css'> <!--[if lte ie 8]><script src="../js/html5shiv.js"></script><![endif]--> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> <script src="../js/skel.min.js"></script> <script src="../js/skel-panels.min.js"></script> <script src="../js/init.js"></script> <noscript> <link rel="stylesheet" href="../css/skel-noscript.css" /> <link rel="stylesheet" href="../css/style.css" /> <link rel="stylesheet" href="../css/style-desktop.css" /> </noscript> </head>

when utilize code, stylesheets don't work. when delete <noscript> around links stylesheets, work, website totally messed up.

what happening? when utilize code in root directory, works fine

are turning off javascript when testing this? <noscript> activated when visitor has no scripting enabled. if want able link css files have rid of tag.

html css noscript

No comments:

Post a Comment