<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Tag: conditional css</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Thu, 23 May 2013 02:45:04 +0000</pubDate>

<item>
<title>helgatheviking on "Conditional CSS element"</title>
<link>http://themeshaper.com/forums/topic/conditional-css-element#post-24608</link>
<pubDate>Tue, 03 Jan 2012 22:15:22 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">24608@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;yes utilizing WP or thematic's dynamic body classes is the way to go
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "Conditional CSS element"</title>
<link>http://themeshaper.com/forums/topic/conditional-css-element#post-24577</link>
<pubDate>Tue, 03 Jan 2012 16:41:58 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">24577@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Uhhhhh, too easy....&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
.page-id-17 #page-bottom {&#60;br /&#62;
	background:#000000;&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;That right?
&#60;/p&#62;</description>
</item>
<item>
<title>fwunder on "Conditional CSS element"</title>
<link>http://themeshaper.com/forums/topic/conditional-css-element#post-24573</link>
<pubDate>Tue, 03 Jan 2012 16:10:38 +0000</pubDate>
<dc:creator>fwunder</dc:creator>
<guid isPermaLink="false">24573@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Happy New Year!&#60;/p&#62;
&#60;p&#62;New to Thematic, but learning...&#60;/p&#62;
&#60;p&#62;I need to make a conditional CSS element. Condition is Page ID. Element is background: url(...);&#60;/p&#62;
&#60;p&#62;Not sure if I should use a filter or a wordpress conditional statement. Can I create a filter (condition) for just a single style element?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>JC on "force IE6 to only pick up  ie6.css"</title>
<link>http://themeshaper.com/forums/topic/force-ie6-to-only-pick-up-ie6css#post-11595</link>
<pubDate>Tue, 20 Apr 2010 16:59:29 +0000</pubDate>
<dc:creator>JC</dc:creator>
<guid isPermaLink="false">11595@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;OK  so after 6 hours that's what finally did it for me :&#60;/p&#62;
&#60;p&#62;1-  Make  a  &#34;blank&#34; style.css  in the child theme directory&#60;br /&#62;
2-  Put  the styling for every browser except IE6  in   mystyle.css (for example)&#60;br /&#62;
3-  Add  this code  to  functions.php   in child theme  directory &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_iefix() { ?&#38;gt;
&#38;lt;!--[if !IE 6]&#38;gt;&#38;lt;!--&#38;gt;
  &#38;lt;link rel=&#38;quot;stylesheet&#38;quot; type=&#38;quot;text/css&#38;quot; href=&#38;quot;&#38;lt;?php echo bloginfo(&#38;#39;stylesheet_directory&#38;#39;) ?&#38;gt;/mystyle.css&#38;quot; /&#38;gt;
&#38;lt;!--&#38;lt;![endif]--&#38;gt;
&#38;lt;!--[if gte IE 7]&#38;gt;
  &#38;lt;link rel=&#38;quot;stylesheet&#38;quot; type=&#38;quot;text/css&#38;quot; href=&#38;quot;&#38;lt;?php echo bloginfo(&#38;#39;stylesheet_directory&#38;#39;) ?&#38;gt;/mystyle.css&#38;quot; /&#38;gt;
&#38;lt;![endif]--&#38;gt;

&#38;lt;!--[if lte IE 6]&#38;gt;&#38;lt;link rel=&#38;quot;stylesheet&#38;quot; href=&#38;quot;http://universal-ie6-css.googlecode.com/files/ie6.0.3.css&#38;quot; media=&#38;quot;screen, projection&#38;quot;&#38;gt;&#38;lt;![endif]--&#38;gt;
&#38;lt;?php }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Et voilà !&#60;br /&#62;
Hope it  helps somebody
&#60;/p&#62;</description>
</item>
<item>
<title>JC on "force IE6 to only pick up  ie6.css"</title>
<link>http://themeshaper.com/forums/topic/force-ie6-to-only-pick-up-ie6css#post-11582</link>
<pubDate>Tue, 20 Apr 2010 10:38:43 +0000</pubDate>
<dc:creator>JC</dc:creator>
<guid isPermaLink="false">11582@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;How do I force IE6  to pick-up ONLY   the special ie6.css  and NOT take into account style.css  ?&#60;br /&#62;
I have used :&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_iefix() { ?&#38;gt;
    &#38;lt;!–[if IE 6]&#38;gt;
 &#38;lt;link rel=&#38;quot;stylesheet&#38;quot; type=&#38;quot;text/css&#38;quot; href=&#38;quot;&#38;lt;?php echo bloginfo(&#38;#39;stylesheet_directory&#38;#39;) ?&#38;gt;/ie6.css&#38;quot; /&#38;gt;
    &#38;lt;![endif]–&#38;gt;
&#38;lt;?php }

add_action(&#38;#39;wp_head&#38;#39;, &#38;#39;childtheme_iefix&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;in my function.php but somehow It  does not do the trick... &#60;/p&#62;
&#60;p&#62;What I really want is to have a totally different  layout for people visiting with  IE6.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
