i'm working in a dnn6 portal and use this code in my skinpage.ascx. but it does not load the SafariSkin.css.
<!--[if Safari]>
<link href="SafariSkin.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if !Safari]>
<link href="Skin.css" rel="stylesheet" type="text/css" />
<![endif]-->
but if i change the condition to "IE" it works. WHY?
i also use the following code in:
<dnn:STYLES runat="server" ID="Stylesnotsafari" Name="notsafari" StyleSheet="SafariSkin.css" Condition="Safari" UseSkinPath="true"/>
and again just when the condition is IE it works properly. Any Idea??
what should i do to have "safari" condition???