Forum Moderators: open
Any clues?
TIA,
Tim
Example:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="/locales/en_US.xsl"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"/schemas/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link rel="stylesheet" type="text/css" href="/css/base.css" />
<title>some page</title>
</head>
<body>
...
<noscript>
<link rel="stylesheet" type="text/css" href="/css/noscript.css" />
</noscript>
...
</body>
</html>
I'd do it the reverse of the way you have-- put the CSS relevant to both JS-enabled and -disabled users in the <link>, then use Javascript to load additional CSS dynamically for those users who have it.