<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Tag: css3 - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/css3</link>
		<description>Support Forum - Tag: css3 - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Tue, 21 May 2013 12:18:30 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/tags/css3" rel="self" type="application/rss+xml" />

		<item>
			<title>vansoft1080 on "Change the color number in the search result field"</title>
			<link>http://www.kriesi.at/support/topic/change-the-color-number-in-the-search-result-field#post-80267</link>
			<pubDate>Thu, 18 Oct 2012 16:21:51 +0000</pubDate>
			<dc:creator>vansoft1080</dc:creator>
			<guid isPermaLink="false">80267@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Works great!! Thank you very much :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Change the color number in the search result field"</title>
			<link>http://www.kriesi.at/support/topic/change-the-color-number-in-the-search-result-field#post-80150</link>
			<pubDate>Wed, 17 Oct 2012 22:40:18 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">80150@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey vansoft1080,&#60;/p&#62;
&#60;p&#62;Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .search-result-counter {
color: #f8f8f8;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Adjust the color code as needed :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vansoft1080 on "Change the color number in the search result field"</title>
			<link>http://www.kriesi.at/support/topic/change-the-color-number-in-the-search-result-field#post-80102</link>
			<pubDate>Wed, 17 Oct 2012 16:46:50 +0000</pubDate>
			<dc:creator>vansoft1080</dc:creator>
			<guid isPermaLink="false">80102@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;When you search any item the result is something like this:&#60;/p&#62;
&#60;p&#62;-------------------------------------------------------------------------------------------------------------------------------------------------&#60;br /&#62;
           TITLE TEXT&#60;br /&#62;
ICON - DATE                                                                                          (THE BIG NUMBER &#34;1&#34;)&#60;br /&#62;
           TEXT&#60;br /&#62;
-------------------------------------------------------------------------------------------------------------------------------------------------&#60;/p&#62;
&#60;p&#62;-------------------------------------------------------------------------------------------------------------------------------------------------&#60;br /&#62;
           TITLE TEXT&#60;br /&#62;
ICON - DATE                                                                                          (THE BIG NUMBER &#34;2&#34;)&#60;br /&#62;
           TEXT&#60;br /&#62;
-------------------------------------------------------------------------------------------------------------------------------------------------&#60;/p&#62;
&#60;p&#62;-------------------------------------------------------------------------------------------------------------------------------------------------&#60;br /&#62;
           TITLE TEXT&#60;br /&#62;
ICON - DATE                                                                                          (THE BIG NUMBER &#34;3&#34;)&#60;br /&#62;
           TEXT&#60;br /&#62;
-------------------------------------------------------------------------------------------------------------------------------------------------&#60;/p&#62;
&#60;p&#62;and so on...&#60;/p&#62;
&#60;p&#62;The &#34;big number&#34; is almost grey and I can not see it properly. I would like to change the color of the number to a darker one but not sure about where to do that.&#60;/p&#62;
&#60;p&#62;I hope I have explained myself properly. &#60;/p&#62;
&#60;p&#62;Best regards
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "How to stop the resposive resize (height) from the footer"</title>
			<link>http://www.kriesi.at/support/topic/how-to-stop-the-resposive-resize-height-from-the-footer#post-80049</link>
			<pubDate>Wed, 17 Oct 2012 11:12:53 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">80049@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi vansoft1080,&#60;/p&#62;
&#60;p&#62;Unfortunately not that we can offer via support. The sticky footer is a tricky effect but would need to be custom added to make sure it didn't cause any other issues with the theme.&#60;/p&#62;
&#60;p&#62;You could try doing something with min-height and a media query for the various sizes but it will be a lot of trial and error to get exactly what you are looking for. So try:&#60;br /&#62;
&#60;code&#62;#top.home #main {min-height: 450px;}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Then you can customize it for the various screen sizes with media queries like this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/* #Media Queries
================================================== */

  /* Smaller than standard 960 (devices and browsers) */
  @media only screen and (max-width: 959px) {
#top.home #main {min-height: 450px;}
}

  /* Tablet Portrait size to standard 960 (devices and browsers) */
  @media only screen and (min-width: 768px) and (max-width: 959px) {
#top.home #main {min-height: 450px;}
}

  /* All Mobile Sizes (devices and browser) */
  @media only screen and (max-width: 767px) {
#top.home #main {min-height: 450px;}
}

  /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
  @media only screen and (min-width: 480px) and (max-width: 767px) {
#top.home #main {min-height: 450px;}
}

  /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
  @media only screen and (max-width: 479px) {
#top.home #main {min-height: 450px;}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can add that big block of css to your custom.css file via FTP. Its located in the css folder of your theme files. Then change the 450px value for each of the screen sizes as you want or need. You can also remove it entirely if needed.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Change the color number in the search result field"</title>
			<link>http://www.kriesi.at/support/topic/change-the-color-number-in-the-search-result-field#post-80012</link>
			<pubDate>Wed, 17 Oct 2012 07:57:05 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">80012@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Can you elaborate please? I checked the search result page: &#60;a href=&#34;http://www.kriesi.at/themes/propulsion/?s=test&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themes/propulsion/?s=test&#60;/a&#62; and I can't see a big number in the search field on the right side... &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vansoft1080 on "Change the color number in the search result field"</title>
			<link>http://www.kriesi.at/support/topic/change-the-color-number-in-the-search-result-field#post-79939</link>
			<pubDate>Tue, 16 Oct 2012 09:03:02 +0000</pubDate>
			<dc:creator>vansoft1080</dc:creator>
			<guid isPermaLink="false">79939@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi everyone,&#60;/p&#62;
&#60;p&#62;I would like to change the color of the number that appears on the right in the search field when you make a search (the big number). The color that appears in the result is too bright and I would like to change it for a darker one.&#60;br /&#62;
Does anyone know where to change it to make it darker or any color I choose?&#60;/p&#62;
&#60;p&#62;Best regards
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vansoft1080 on "How to stop the resposive resize (height) from the footer"</title>
			<link>http://www.kriesi.at/support/topic/how-to-stop-the-resposive-resize-height-from-the-footer#post-79938</link>
			<pubDate>Tue, 16 Oct 2012 08:57:21 +0000</pubDate>
			<dc:creator>vansoft1080</dc:creator>
			<guid isPermaLink="false">79938@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Sorry for the delay. I have already tested to code above and I know what you mean. I think that adding elements will solve the problem but I need to get the footer fixed to button of the page, since I don't want to add more elements.&#60;br /&#62;
I was wondering if there is any code to enlarge the content view instead of the footer. I gues that with this, the fotter will remain in the button and a blank space will appear.&#60;br /&#62;
Any suggestion for doing this?&#60;/p&#62;
&#60;p&#62;best regards,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to stop the resposive resize (height) from the footer"</title>
			<link>http://www.kriesi.at/support/topic/how-to-stop-the-resposive-resize-height-from-the-footer#post-77202</link>
			<pubDate>Tue, 25 Sep 2012 06:13:56 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">77202@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi vansoft1080,&#60;/p&#62;
&#60;p&#62;I checked your site and the reason you see the footer to be so big, is because the html background color is the same color as the footer (that's why the footer looks extended).  Try to add this code in your Quick CSS or custom.css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;html {
   background: black !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and you'll see what I mean. Just remove this code after you've seen the actual height of your footer.&#60;/p&#62;
&#60;p&#62;I think the solution for this is add more elements, so the height will be expanded.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vansoft1080 on "How to stop the resposive resize (height) from the footer"</title>
			<link>http://www.kriesi.at/support/topic/how-to-stop-the-resposive-resize-height-from-the-footer#post-77120</link>
			<pubDate>Mon, 24 Sep 2012 13:44:30 +0000</pubDate>
			<dc:creator>vansoft1080</dc:creator>
			<guid isPermaLink="false">77120@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael,&#60;/p&#62;
&#60;p&#62;The web site is still in beta phase, It's a project I'm working on it and therefore there is not so much content on it ^^. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.andruinnova.es/&#34; rel=&#34;nofollow&#34;&#62;http://www.andruinnova.es/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I hope you can help me.&#60;/p&#62;
&#60;p&#62;Best regards
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to stop the resposive resize (height) from the footer"</title>
			<link>http://www.kriesi.at/support/topic/how-to-stop-the-resposive-resize-height-from-the-footer#post-77086</link>
			<pubDate>Mon, 24 Sep 2012 09:40:10 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">77086@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi vansoft1080,&#60;/p&#62;
&#60;p&#62;Kindly post a link to your site, so we can check it further.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vansoft1080 on "How to stop the resposive resize (height) from the footer"</title>
			<link>http://www.kriesi.at/support/topic/how-to-stop-the-resposive-resize-height-from-the-footer#post-76768</link>
			<pubDate>Fri, 21 Sep 2012 08:40:30 +0000</pubDate>
			<dc:creator>vansoft1080</dc:creator>
			<guid isPermaLink="false">76768@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Any help please? I would really appreciate it, I'm stuck ^^
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vansoft1080 on "How to stop the resposive resize (height) from the footer"</title>
			<link>http://www.kriesi.at/support/topic/how-to-stop-the-resposive-resize-height-from-the-footer#post-76609</link>
			<pubDate>Wed, 19 Sep 2012 18:41:16 +0000</pubDate>
			<dc:creator>vansoft1080</dc:creator>
			<guid isPermaLink="false">76609@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi guys,&#60;/p&#62;
&#60;p&#62;I'm trying to solve a certain issue with the sizeof the  footer on this template. I would like to give a fixed size (height) to the footer without taking into account that this is a HTML5 resposive theme. I have tested the them on a tablet and the footer is huge! almost half of the screen.&#60;br /&#62;
Do you know how to solve this? I guess that it's somewhere on the CSS but I'm not able to locate that line.&#60;/p&#62;
&#60;p&#62;Best regards and thank you all in advance
&#60;/p&#62;</description>
		</item>
		<item>
			<title>downeasy on "Styling Cufon headings"</title>
			<link>http://www.kriesi.at/support/topic/styling-cufon-headings#post-61483</link>
			<pubDate>Thu, 21 Jun 2012 18:02:30 +0000</pubDate>
			<dc:creator>downeasy</dc:creator>
			<guid isPermaLink="false">61483@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks. I thought maybe the options were being overwritten by the class-style-generator.php file. &#60;/p&#62;
&#60;p&#62;I'll play around with it some more.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Styling Cufon headings"</title>
			<link>http://www.kriesi.at/support/topic/styling-cufon-headings#post-61324</link>
			<pubDate>Thu, 21 Jun 2012 06:36:06 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">61324@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; This page: &#60;a href=&#34;https://github.com/sorccu/cufon/wiki/Styling&#34; rel=&#34;nofollow&#34;&#62;https://github.com/sorccu/cufon/wiki/Styling&#60;/a&#62; lists all available options. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>downeasy on "Styling Cufon headings"</title>
			<link>http://www.kriesi.at/support/topic/styling-cufon-headings#post-61133</link>
			<pubDate>Wed, 20 Jun 2012 14:03:20 +0000</pubDate>
			<dc:creator>downeasy</dc:creator>
			<guid isPermaLink="false">61133@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hrmm... Is there a cufon stylesheet? I'd like to add some text shadows and some transforms to the headers (h1,h2) and they aren't taking hold. &#60;/p&#62;
&#60;p&#62;My backup effects are working (when cufons aren't loaded by a browser) &#60;/p&#62;
&#60;p&#62;   h1 {&#60;br /&#62;
   text-shadow: 0 1px 0 black; !important&#60;br /&#62;
   color: #292929;  !important&#60;br /&#62;
   }&#60;/p&#62;
&#60;p&#62;...but re-styling the cufon entries in the stylesheet is not making any difference. &#60;/p&#62;
&#60;p&#62;.cufon-active #top .cufon_headings{&#60;br /&#62;
      text-shadow: 0 1px 0 black; !important&#60;br /&#62;
      color: #292929;  !important&#60;br /&#62;
      text-transform: none;&#60;br /&#62;
}&#60;br /&#62;
etc...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>downeasy on "Styling Cufon headings"</title>
			<link>http://www.kriesi.at/support/topic/styling-cufon-headings#post-61125</link>
			<pubDate>Wed, 20 Jun 2012 12:12:18 +0000</pubDate>
			<dc:creator>downeasy</dc:creator>
			<guid isPermaLink="false">61125@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;That sorta worked! Ha, thanks. I still have some tweaking to do. some h2/h3 titles, but not all, are still black. &#60;/p&#62;
&#60;p&#62;It's a start though. Thanks.&#60;/p&#62;
&#60;p&#62;You can see what I'm talking about here: &#60;a href=&#34;http://wholesale.shrimp.com/delayed-order-sales-form/&#34; rel=&#34;nofollow&#34;&#62;http://wholesale.shrimp.com/delayed-order-sales-form/&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;Ignore the other font stylings, the owner is still deciding on some body traits.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "Styling Cufon headings"</title>
			<link>http://www.kriesi.at/support/topic/styling-cufon-headings#post-61023</link>
			<pubDate>Tue, 19 Jun 2012 21:25:52 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">61023@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Try adding this to your custom.css.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top .title_container h1 {
    color: #f14e54;
}

h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .relThumbHeading {
    color: #f14e54;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>downeasy on "Styling Cufon headings"</title>
			<link>http://www.kriesi.at/support/topic/styling-cufon-headings#post-61001</link>
			<pubDate>Tue, 19 Jun 2012 19:03:26 +0000</pubDate>
			<dc:creator>downeasy</dc:creator>
			<guid isPermaLink="false">61001@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ordinarily I'd try to figure this out myself, but I am baffled at this point. &#60;/p&#62;
&#60;p&#62;I would like to make sure that all headings h1,h2,h3,h4 use the same color: #f14e54 but when I try to add a custom rule to the short css box, the rule doesn't propagate. I assume this is because I am styling incorrectly for the css3 fonts. Or, there are rules overriding my rule. &#60;/p&#62;
&#60;p&#62;When I've tried adding anything to the custom.css file none of those rules take hold either. &#60;/p&#62;
&#60;p&#62;When I choose that color within the Abundance styling manager it only changes the links, highlight, and h2 elements.&#60;/p&#62;
&#60;p&#62;Can you tell me what specifically to enter to get this to propagate across my page?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Michael Hainsworth on "How to hide DIV content if shown on mobile?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-hide-div-content-if-shown-on-mobile#post-52770</link>
			<pubDate>Sun, 22 Apr 2012 12:32:52 +0000</pubDate>
			<dc:creator>Michael Hainsworth</dc:creator>
			<guid isPermaLink="false">52770@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks so much! I'm well on my way to creating my own web app within Propulsion!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to hide DIV content if shown on mobile?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-hide-div-content-if-shown-on-mobile#post-51320</link>
			<pubDate>Wed, 11 Apr 2012 22:52:13 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">51320@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;You can drop a media query on your custom.css &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
 .qrcode widget {
      display: none
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Hope this helps. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Michael Hainsworth on "How to hide DIV content if shown on mobile?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-hide-div-content-if-shown-on-mobile#post-51166</link>
			<pubDate>Wed, 11 Apr 2012 14:00:50 +0000</pubDate>
			<dc:creator>Michael Hainsworth</dc:creator>
			<guid isPermaLink="false">51166@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there! CSS3 newbie asking if you know how I can set a div (specifically my .qrcode widget) to display: none if the widget is being shown on a handheld device? There's no sense in cluttering up the reader's screen with a QR Code when they're already on a smartphone, so I'd like to hide it.&#60;/p&#62;
&#60;p&#62;Any help would be greatly appreciated. &#60;/p&#62;
&#60;p&#62;thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PaulaArturo on "Newscast, IE9 and CSS3 totally avoidable issues - Shame on you!"</title>
			<link>http://www.kriesi.at/support/topic/newscast-ie9-and-css3-totally-avoidable-issues-shame-on-you#post-43432</link>
			<pubDate>Sat, 25 Feb 2012 01:22:20 +0000</pubDate>
			<dc:creator>PaulaArturo</dc:creator>
			<guid isPermaLink="false">43432@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Thanks for getting back to me: I appreciate it. I understand your point of view, but I have to say I am not at all convinced, and for many reasons:&#60;br /&#62;
&#60;blockquote&#62;the theme was released around 2 years ago and of course the code isn't modern compared to newer themes.&#60;/blockquote&#62;&#60;br /&#62;
IE 8 was officially released before this theme was, in March 2009. It was advertised as being &#34;cross-browser compatible&#34; , and I IE7 emulation pretty much confirms it wasn't at the time (otherwise, it would have supported IE8 as well).&#60;br /&#62;
[&#60;blockquote&#62; The IE7 emulation is required because of some javascript functions.&#60;/blockquote&#62;&#60;br /&#62;
You could have called the emulation dynamically based on a browser check, There are many free browser detection scripts both in PHP and JS that are incredibly easy to work with. I'm sorry, but this is a major oversight, to say the least.&#60;/p&#62;
&#60;p&#62;As for the deprecated WP functions, you stated that:&#60;br /&#62;
&#60;blockquote&#62;it's simply impossible to incorporate all new features in all themes Kriesi every released.&#60;/blockquote&#62;&#60;br /&#62;
I don't see why it would be &#60;em&#62;impossible&#60;/em&#62;, This is, after all, a &#60;strong&#62;premium&#60;/strong&#62; (paying) theme. If even several &#60;strong&#62;free&#60;/strong&#62; themes, such as Graphene, Twenty Eleven, etc. release updates regularly as WP evolves, so should premium themes. A theme that does not get updated or that has less features than a free one can barely be called &#34;Premium&#34; , I believe.&#60;br /&#62;
Not to mention, this theme is still being supported and it was updated a couple of weeks ago from 2.0.2 to 2.0.3, so I don't see a real reason not to update the code.&#60;/p&#62;
&#60;p&#62;Perhaps I am asking too much from premium developers, but at the same time, premium developers do ask for more &#34;compensation&#34; for their work than non-premium ones, so fair is fair, if you ask me.&#60;/p&#62;
&#60;p&#62;P.S.: I should have clarified in my first post that I'm not Paula Arturo, but her developer, Francisco de Azevedo (Aka, Marventus).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Newscast, IE9 and CSS3 totally avoidable issues - Shame on you!"</title>
			<link>http://www.kriesi.at/support/topic/newscast-ie9-and-css3-totally-avoidable-issues-shame-on-you#post-43418</link>
			<pubDate>Fri, 24 Feb 2012 21:09:54 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">43418@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
the theme was released around 2 years ago and of course the code isn't modern compared to newer themes. The IE7 emulation is required because of some javascript functions. I can understand that it's frustrating if you discover some limitations of the older code/framework but it's simply impossible to incorporate all new features in all themes Kriesi every released. The theme itself works flawlessly with WP3.3 and there's no need to replace the deprecated functions yet. As soon as we encounter problems Kriesi will fix them and release an update.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>PaulaArturo on "Newscast, IE9 and CSS3 totally avoidable issues - Shame on you!"</title>
			<link>http://www.kriesi.at/support/topic/newscast-ie9-and-css3-totally-avoidable-issues-shame-on-you#post-43374</link>
			<pubDate>Fri, 24 Feb 2012 17:43:30 +0000</pubDate>
			<dc:creator>PaulaArturo</dc:creator>
			<guid isPermaLink="false">43374@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi. I apologize in advanced if I come out a little too strong, but your poor coding practices have made me waste &#60;strong&#62;countless&#60;/strong&#62; hours of work adapting the Newscast 2.0.2 theme to my needs.&#60;br /&#62;
I'v been struggling with CSS3 properties in Internet Explorer 9 for days now. Yesterday, I landed on the following &#60;a href=&#34;http://www.sitepoint.com/crimes-against-wordpress/&#34;&#62;article&#60;/a&#62; looking for something completely different. When I got to the &#34;Uneditable Template Text&#34; section, where the author complains about the use of:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;IE=EmulateIE7&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;All of a sudden, it just hit me. Could the [b]premium[b] template I had bought be using such a lame coding practice? &#34;No way!&#34;, I thought at first. I payed good money for that template, and that is not even smth I would do on a free WP template, no matter how simple.&#60;/p&#62;
&#60;p&#62;Then I decided to fire up my Dreamweaver, open the header.php, and there it was, on line 8, clear as day, the reason for all my trouble:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;meta http-equiv=&#38;quot;X-UA-Compatible&#38;quot; content=&#38;quot;IE=EmulateIE7&#38;quot; /&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Boy, was I wrong or what?! The second I removed that line, all CSS3 properties started working in IE9.&#60;/p&#62;
&#60;p&#62;Now, again, as politely as I can, given the circumstances: what where you thinking? As Andrew Tetlaw puts it, quite eloquently, in his post:&#60;br /&#62;
&#60;blockquote&#62;If you’re a theme maker and you’re unable to make your CSS work in IE unless it emulates IE7, you need to go back to the drawing board. Seriously bad form.&#60;/blockquote&#62;&#60;/p&#62;
&#60;p&#62;I should be asking you for a full refund and bill you for the hours I wasted figuring this out, but I won't. An explanation, however, would be nice. Oh, it would also be nice if you could read that article. It might come in handy if you want to keep your customers happy.&#60;/p&#62;
&#60;p&#62;BTW: I found several deprecated WP functions in this template as well. Pretty serious stuff for a premium theme, if you ask me.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
