<?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 - Topic: Replacing logo with Retina Logo</title>
		<link>http://www.kriesi.at/support/topic/replacing-logo-with-retina-logo</link>
		<description>Support Forum - Topic: Replacing logo with Retina Logo</description>
		<language>en-US</language>
		<pubDate>Sat, 18 May 2013 16:47:44 +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/topic/replacing-logo-with-retina-logo" rel="self" type="application/rss+xml" />

		<item>
			<title>Nick on "Replacing logo with Retina Logo"</title>
			<link>http://www.kriesi.at/support/topic/replacing-logo-with-retina-logo#post-97700</link>
			<pubDate>Wed, 20 Feb 2013 18:48:27 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">97700@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;hmmmmm 3 seconds? thats not good. Why don't you encode the image to base64 and stick it in the css , you may have a large css file, but mobiles load css instantly unlike images. It would shave 90% on your load time. Here is the url to the converter &#60;a href=&#34;http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/&#34; rel=&#34;nofollow&#34;&#62;http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Good luck!&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Lindsey on "Replacing logo with Retina Logo"</title>
			<link>http://www.kriesi.at/support/topic/replacing-logo-with-retina-logo#post-97691</link>
			<pubDate>Wed, 20 Feb 2013 18:13:02 +0000</pubDate>
			<dc:creator>Lindsey</dc:creator>
			<guid isPermaLink="false">97691@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Nick,&#60;/p&#62;
&#60;p&#62;With the Propulsion theme, if I remove my image from the Theme Options, the Propulsion image is the default logo, and displays with my logo as well. &#60;/p&#62;
&#60;p&#62;After installing WP Retina2X, I was able to remove media queries completely for the logo. All I needed to do was rename the Propulsion logo as p-logo.png and drop in my original size image in named logo.png, as well as a high res version as &#60;a href=&#34;mailto:logo@2x.png&#34;&#62;logo@2x.png&#60;/a&#62;. The high res version loads about 3 seconds after the original version on the iPhone.&#60;/p&#62;
&#60;p&#62;Thank you so much for all of your help and kindness!!&#60;/p&#62;
&#60;p&#62;Sincerely,&#60;br /&#62;
Lindsey
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Replacing logo with Retina Logo"</title>
			<link>http://www.kriesi.at/support/topic/replacing-logo-with-retina-logo#post-97551</link>
			<pubDate>Wed, 20 Feb 2013 01:35:18 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">97551@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You could do it like this ... below is pseudo code to give you an idea.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top h1.logo {   background-image: url(logo-non-retina.png) !important;
}
@media ...al the media queries from above
only screen and ( min-resolution: 2dppx) {
#top h1.logo { background: url(&#38;quot;/retina.png&#38;quot;)  !important; }
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and for the html&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h1 id=&#38;quot;logo&#38;quot; class=&#38;quot;logo&#38;quot;&#38;gt;
    &#38;lt;a href=&#38;quot;abc.com&#38;quot;&#38;gt;Website name&#38;lt;/a&#38;gt;
&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Ref: &#60;a href=&#34;http://stackoverflow.com/questions/665037/replacing-h1-text-with-a-logo-image-best-method-for-seo-and-accessibility&#34; rel=&#34;nofollow&#34;&#62;http://stackoverflow.com/questions/665037/replacing-h1-text-with-a-logo-image-best-method-for-seo-and-accessibility&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Lindsey on "Replacing logo with Retina Logo"</title>
			<link>http://www.kriesi.at/support/topic/replacing-logo-with-retina-logo#post-97543</link>
			<pubDate>Tue, 19 Feb 2013 23:48:47 +0000</pubDate>
			<dc:creator>Lindsey</dc:creator>
			<guid isPermaLink="false">97543@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;This is a great article and resource you have given me. I will conquer this! I appreciate your help.&#60;/p&#62;
&#60;p&#62;Yes, I hard-coded the logo in the Theme Options inside WordPress. I wonder if I should replace it with the high-res one, and just change the background size via CSS in my mobile media query instead of swapping it out. I think that would work. &#60;/p&#62;
&#60;p&#62;I will try this and also reinstall the plugin and I will update you soon.&#60;/p&#62;
&#60;p&#62;Thank you so kindly, Nick!&#60;/p&#62;
&#60;p&#62;- Lindsey
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Replacing logo with Retina Logo"</title>
			<link>http://www.kriesi.at/support/topic/replacing-logo-with-retina-logo#post-97540</link>
			<pubDate>Tue, 19 Feb 2013 23:04:43 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">97540@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Hehe. I got the css I posted from the same website. Yet it didn't say to remove the original, it just says to add the variation. You can also look at this &#60;a href=&#34;http://www.brettjankord.com/2012/11/28/cross-browser-retinahigh-resolution-media-queries/&#34; rel=&#34;nofollow&#34;&#62;http://www.brettjankord.com/2012/11/28/cross-browser-retinahigh-resolution-media-queries/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You have your main logo hardcoded in the html so it will be displayed no matter what&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h1 class=&#38;quot;logo&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;http://www.toxicfreechallenge.com/&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;http://toxicfreechallenge.com/wp-content/uploads/2011/12/TFC-logo-114x143.png&#38;quot; alt=&#38;quot;&#38;quot;&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You need to have both the retina and the original image inside the css and to show one or the other class based on the media query.   Please look here for example &#60;a href=&#34;http://www.sitepoint.com/css-techniques-for-retina-displays/&#34; rel=&#34;nofollow&#34;&#62;http://www.sitepoint.com/css-techniques-for-retina-displays/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I would still use &#60;a href=&#34;http://wordpress.org/extend/plugins/wp-retina-2x/faq/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wp-retina-2x/faq/&#60;/a&#62; ... the developer guarantees it and even offers free support. can't beat that.&#60;br /&#62;
Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Lindsey on "Replacing logo with Retina Logo"</title>
			<link>http://www.kriesi.at/support/topic/replacing-logo-with-retina-logo#post-97513</link>
			<pubDate>Tue, 19 Feb 2013 20:26:18 +0000</pubDate>
			<dc:creator>Lindsey</dc:creator>
			<guid isPermaLink="false">97513@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Nick,&#60;/p&#62;
&#60;p&#62;I've updated my CSS and checked my Firefox app on my iPhone, and they look the same. I've read articles on using both types of moz, one from css-tricks.com even says &#34;The super weird min--moz-device-pixel-ratio is probably a bug, might wanna put in -moz-min-device-pixel-ratio also in case they fix it but leave it prefixed&#34;. In any event, I have changed mine to your suggestion - thank you so much, although my icons are appearing the same.&#60;/p&#62;
&#60;p&#62;Regarding the image replacement for the logo, I have it in my media query as such:&#60;/p&#62;
&#60;p&#62;@media&#60;br /&#62;
only screen and (-webkit-min-device-pixel-ratio: 2),&#60;br /&#62;
only screen and (   min--moz-device-pixel-ratio: 2),&#60;br /&#62;
only screen and (     -o-min-device-pixel-ratio: 2/1),&#60;br /&#62;
only screen and (        min-device-pixel-ratio: 2),&#60;br /&#62;
only screen and (                min-resolution: 192dpi),&#60;br /&#62;
only screen and (                min-resolution: 2dppx) { &#60;/p&#62;
&#60;p&#62;h1.logo a { background: url(&#34;/wp-content/uploads/2011/12/TFC-logo-114x143@2x.png&#34;) no-repeat top left; background-size: 60%; }&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;The image shows up and looks great, except it's peeking out from behind my original logo. I can't display:none on the original logo because they have the same selector. I'm not sure why the original logo isn't disappearing. I have saved my CSS so you should be able to see it on my home page &#60;a href=&#34;http://www.toxicfreechallenge.com&#34; rel=&#34;nofollow&#34;&#62;http://www.toxicfreechallenge.com&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;This is a very interesting dilemma. &#60;/p&#62;
&#60;p&#62;Thank you for your help!!&#60;/p&#62;
&#60;p&#62;- Lindsey
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Replacing logo with Retina Logo"</title>
			<link>http://www.kriesi.at/support/topic/replacing-logo-with-retina-logo#post-97505</link>
			<pubDate>Tue, 19 Feb 2013 19:37:00 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">97505@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please try this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) { 

  /* Retina-specific stuff here */

}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Your line 2 is not correct. min moz device ... not ... min moz min device&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Lindsey on "Replacing logo with Retina Logo"</title>
			<link>http://www.kriesi.at/support/topic/replacing-logo-with-retina-logo#post-97497</link>
			<pubDate>Tue, 19 Feb 2013 19:10:35 +0000</pubDate>
			<dc:creator>Lindsey</dc:creator>
			<guid isPermaLink="false">97497@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Nick,&#60;/p&#62;
&#60;p&#62;I'm just using my own layout.css document with these media queries, which are successful with all my other images, so I'm not sure why the logo isn't updating:&#60;/p&#62;
&#60;p&#62;@media only screen and (-webkit-min-device-pixel-ratio: 2),&#60;br /&#62;
       only screen and (min--moz-min-device-pixel-ratio: 2),&#60;br /&#62;
       only screen and (-o-min-device-pixel-ratio: 2/1),&#60;br /&#62;
       only screen and (min-device-pixel-ratio: 2),&#60;br /&#62;
		only screen and (min-resolution: 2dppx) {&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;I had the Retina2x plugin but it wasn't working, so I just created my own media queries and uploaded &#60;a href=&#34;mailto:icon@2x.png&#34;&#62;icon@2x.png&#60;/a&#62; for all my images and icon and coded it out with the above media query, and everything except the logo worked. Retina2x documentation states &#34;The plugin can transform the images that go through the WordPress API and the 'Image Sizes' properly. Themes often uses a one-time customized size for the logo, and for that reason the image wouldn't be taken care of by the plugin. The easiest way to go around this is to create the Retina image by yourself. For example, if you are logo is 200x100 and named 'logo.png', upload a 400x200 version of that logo named 'logo@2x.png' next to the other one. It should them work immediately.&#34; I did that, but it still didn't replace it, so I had no need for the plugin and deactivated and deleted it.&#60;/p&#62;
&#60;p&#62;So with my own code, my images are fine and retina images are replacing, but the logo isn't.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Replacing logo with Retina Logo"</title>
			<link>http://www.kriesi.at/support/topic/replacing-logo-with-retina-logo#post-97487</link>
			<pubDate>Tue, 19 Feb 2013 18:33:32 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">97487@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;What are you using (code) to display retina? Have you tried this &#60;a href=&#34;http://conditionizr.com/&#34; rel=&#34;nofollow&#34;&#62;http://conditionizr.com/&#60;/a&#62; or &#60;a href=&#34;http://wordpress.org/extend/plugins/wp-retina-2x/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/wp-retina-2x/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Lindsey on "Replacing logo with Retina Logo"</title>
			<link>http://www.kriesi.at/support/topic/replacing-logo-with-retina-logo#post-97321</link>
			<pubDate>Mon, 18 Feb 2013 20:33:01 +0000</pubDate>
			<dc:creator>Lindsey</dc:creator>
			<guid isPermaLink="false">97321@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Team,&#60;/p&#62;
&#60;p&#62;I've updated all my site's icons and images with retina and all is well on mobile.&#60;/p&#62;
&#60;p&#62;I'd like to now replace my logo with a retina image. This is what is working for me for site wide images in my media queries:&#60;/p&#62;
&#60;p&#62;#list .icon { background: url(&#34;../images/icon@2x.png&#34;) no-repeat top left; background-size: 60%; }&#60;/p&#62;
&#60;p&#62;However, when I try to implement retina replacement for my logo, my retina image shows up under the logo and to the left, so instead of replacing the original logo on mobile devices, there are two images there. &#60;/p&#62;
&#60;p&#62;I have tried the following and they are showing up but the original image isn't going away:&#60;/p&#62;
&#60;p&#62;h1.logo { background: url(&#34;../images/TFC-logo-912x1144@2x.png&#34;) no-repeat top left; background-size: 60%; }&#60;/p&#62;
&#60;p&#62;h1.logo a { background: url(&#34;../images/TFC-logo-912x1144@2x.png&#34;) no-repeat top left; background-size: 60%; }&#60;/p&#62;
&#60;p&#62;h1.logo a img { background: url(&#34;../images/TFC-logo-912x1144@2x.png&#34;) no-repeat top left; background-size: 60%; }&#60;/p&#62;
&#60;p&#62;I've done this for other sites when hand-coding, but this is my first time attempting with a theme and I'm not sure how to correct this in the php.&#60;/p&#62;
&#60;p&#62;Thank you for your help!&#60;/p&#62;
&#60;p&#62;- Lindsey
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
