Hi
So I'm doing my first build with Actinic.
I've got my main style sheet working but the program seems to not be picking up my ie overides. They aren't uploading for certain.
I'm assuming something in my head tags is knocking it out:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title><Actinic:Variable Name="PageTitle"/></title></meta>
<actinic:variable name="BaseHref" />
<link rel="P3Pv1" href="<actinic:variable name="P3PFullPolicyLink" />">
</actinic:block>
<link href="actinic.css" rel="stylesheet" type="text/css">
<actinic:variable name="JavaScriptFunctions" />
<link rel="stylesheet" href="primary.css" type="text/css" media="screen" />
<!--[if IE 7]>
<link rel="stylesheet"
href="ie7.css" media="screen" />
<![endif]-->
<!--[if IE 6]>
<link rel="stylesheet"
href="ie6.css" media="screen" />
<![endif]-->
<!--[if IE 5]>
<link rel="stylesheet"
href="ie6.css" media="screen" />
<![endif]-->
</head>
Not really sure what all the unusual tags are actually doing!
So I'm doing my first build with Actinic.
I've got my main style sheet working but the program seems to not be picking up my ie overides. They aren't uploading for certain.
I'm assuming something in my head tags is knocking it out:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title><Actinic:Variable Name="PageTitle"/></title></meta>
<actinic:variable name="BaseHref" />
<link rel="P3Pv1" href="<actinic:variable name="P3PFullPolicyLink" />">
</actinic:block>
<link href="actinic.css" rel="stylesheet" type="text/css">
<actinic:variable name="JavaScriptFunctions" />
<link rel="stylesheet" href="primary.css" type="text/css" media="screen" />
<!--[if IE 7]>
<link rel="stylesheet"
href="ie7.css" media="screen" />
<![endif]-->
<!--[if IE 6]>
<link rel="stylesheet"
href="ie6.css" media="screen" />
<![endif]-->
<!--[if IE 5]>
<link rel="stylesheet"
href="ie6.css" media="screen" />
<![endif]-->
</head>
Not really sure what all the unusual tags are actually doing!
Comment