<?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 - User Favorites: creatorofstuff</title>
		<link><a href='http://www.kriesi.at/support/profile/creatorofstuff'>creatorofstuff</a></link>
		<description>Support Forum - User Favorites: creatorofstuff</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 01:00:49 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "WooCommerce - want to change huge h1 and price color / Replete"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-want-to-change-huge-h1-and-price-color-replete#post-98318</link>
			<pubDate>Mon, 25 Feb 2013 03:36:39 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">98318@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Try linking directly to your custom.css file in your browser, if you aren't able to pull it up then there could be a weird permissions issue going on.&#60;/p&#62;
&#60;p&#62;The code I provided above is specifically for the single page, you can just remove .single-product to have that price change effect the site prices everywhere and then add !important just to make sure it is always the most important rule as well:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .price span {
color: #C00 !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Also, no css in the Quick CSS filed will be lost on updates. It is treated as a theme option which are never lost when updating the theme.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>creatorofstuff on "WooCommerce - want to change huge h1 and price color / Replete"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-want-to-change-huge-h1-and-price-color-replete#post-98218</link>
			<pubDate>Sun, 24 Feb 2013 05:11:13 +0000</pubDate>
			<dc:creator>creatorofstuff</dc:creator>
			<guid isPermaLink="false">98218@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Is this it? (Or do I have too much code in there?) It seems to work...&#60;/p&#62;
&#60;p&#62;#top .main_color .price, .main_color .stock, #top #wrap_all .main_color ins {&#60;br /&#62;
    color: #CC0000;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Again, &#60;strong&#62;it works ONLY in quick css, but not in my custom.css.&#60;/strong&#62; This is so wierd. Why is this??
&#60;/p&#62;</description>
		</item>
		<item>
			<title>creatorofstuff on "WooCommerce - want to change huge h1 and price color / Replete"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-want-to-change-huge-h1-and-price-color-replete#post-98209</link>
			<pubDate>Sun, 24 Feb 2013 00:56:43 +0000</pubDate>
			<dc:creator>creatorofstuff</dc:creator>
			<guid isPermaLink="false">98209@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I also just noticed that the only place the price has changed color is on the individual page. It is still the wrong color on the homepage with featured products, and the shop page that contains multiple products. Sorry, but can you tell me the code for those, too? I'm still baffled about why this does not work in the custom.css. I played around to make sure that file is working (I changed some of the other code in it to be sure and it is, indeed, a working file). &#60;/p&#62;
&#60;p&#62;Thank you!!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>creatorofstuff on "WooCommerce - want to change huge h1 and price color / Replete"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-want-to-change-huge-h1-and-price-color-replete#post-98207</link>
			<pubDate>Sun, 24 Feb 2013 00:32:45 +0000</pubDate>
			<dc:creator>creatorofstuff</dc:creator>
			<guid isPermaLink="false">98207@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;br /&#62;
Thanks for the reply. I'm baffled because I first put the code in my custom.css file, which is where I have been putting all of my custom css. It did nothing. But when I tried putting it in my quick css it actually worked. Can you explain why this might be happening? Isn't it bad to use the quick css? What if you update the theme? Won't that code get written over?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "WooCommerce - want to change huge h1 and price color / Replete"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-want-to-change-huge-h1-and-price-color-replete#post-98203</link>
			<pubDate>Sat, 23 Feb 2013 21:15:26 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">98203@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi creatorofstuff,&#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.single-product h1.product_title {
font-size: 30px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And for the color of the price, you can use:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top.single-product .price span {
color: #C00;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>creatorofstuff on "WooCommerce - want to change huge h1 and price color / Replete"</title>
			<link>http://www.kriesi.at/support/topic/woocommerce-want-to-change-huge-h1-and-price-color-replete#post-98133</link>
			<pubDate>Fri, 22 Feb 2013 23:13:03 +0000</pubDate>
			<dc:creator>creatorofstuff</dc:creator>
			<guid isPermaLink="false">98133@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm wasting too many hours doing the same thing over and over so I have to ask. I've used Firebug to find the css for the size of the gigantic product description, and can make it change in Firebug, but nothing I do makes it change from my custom css file. I've tried so many variations I've lost count. Can you please tell me the &#60;strong&#62;exact&#60;/strong&#62; code to use? It's proportionally huge, and on a mobile device it's downright massive! &#60;/p&#62;
&#60;p&#62;I would also like to be able to change the color of the price. I can't even make that work in Firebug.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "logo covered by &#34;register&#34; only in internet explorer"</title>
			<link>http://www.kriesi.at/support/topic/logo-covered-by-register-only-in-internet-explorer#post-97439</link>
			<pubDate>Tue, 19 Feb 2013 14:59:16 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">97439@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It isn't just in IE8, though it appears that way at first glance. The issue is that theme is already doing a media query change based on larger screens. Adjust your browser to a smaller width and you'll see the logo overlap in any browser.&#60;/p&#62;
&#60;p&#62;I'd suggest putting the bracket text under the main logo or re-adjusting its size a bit. Otherwise you would have to adjust the size of the logo container/image for each media query.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>creatorofstuff on "logo covered by &#34;register&#34; only in internet explorer"</title>
			<link>http://www.kriesi.at/support/topic/logo-covered-by-register-only-in-internet-explorer#post-97299</link>
			<pubDate>Mon, 18 Feb 2013 19:32:55 +0000</pubDate>
			<dc:creator>creatorofstuff</dc:creator>
			<guid isPermaLink="false">97299@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin,&#60;br /&#62;
Thanks so much. It's pretty rough since I'm still figuring out the theme, Woocommerce, and Wordpress (!) but maybe you can see what is going on. I might make the logo smaller in the end but I still want to know how to address IE8. Thanks!!!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://sassypantsdesign.com&#34; rel=&#34;nofollow&#34;&#62;http://sassypantsdesign.com&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "logo covered by &#34;register&#34; only in internet explorer"</title>
			<link>http://www.kriesi.at/support/topic/logo-covered-by-register-only-in-internet-explorer#post-97233</link>
			<pubDate>Mon, 18 Feb 2013 13:59:03 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">97233@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi creatorofstuff,&#60;/p&#62;
&#60;p&#62;We will need to see the site live and inspect things to see if there is anything that can be done.&#60;/p&#62;
&#60;p&#62;Most likely, a bit of css will fix the issue and it can target IE8 specifically if you use the MSIE8 class selector.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>creatorofstuff on "logo covered by &#34;register&#34; only in internet explorer"</title>
			<link>http://www.kriesi.at/support/topic/logo-covered-by-register-only-in-internet-explorer#post-97013</link>
			<pubDate>Sat, 16 Feb 2013 05:28:16 +0000</pubDate>
			<dc:creator>creatorofstuff</dc:creator>
			<guid isPermaLink="false">97013@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Please forgive me if the answer is in the forum somewhere. I have searched but can't find it. My logo/tagline is wider than the default 200px in Replete, but I changed the css to accommodate it, and it looks great...until I happened to see it in internet explorer 8, where the word &#34;register&#34; is on top of my tagline. Is there a maximum width for the logo? Mine is 676 px, but like I said, it looks great in other browsers. Or is there some code I can put in to make IE behave? &#60;/p&#62;
&#60;p&#62;Thanks in advance!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Replete product zoom on hover"</title>
			<link>http://www.kriesi.at/support/topic/replete-product-zoom-on-hover#post-96256</link>
			<pubDate>Mon, 11 Feb 2013 23:25:43 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">96256@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi creatorofstuff,&#60;/p&#62;
&#60;p&#62;The effect should already be on hover. If it isn't happening then there is an issue with the installation.&#60;/p&#62;
&#60;p&#62;The image is decided by the way the image thumbnails are generated. You can use a plugin like &#60;a href=&#34;http://wordpress.org/extend/plugins/simple-image-sizes/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/simple-image-sizes/&#60;/a&#62; to easily change the image thumbnail size and crop. The images are still constrained by the theme css but this will change the size of images generated for the various uses throughout the theme as well as if they are cropped or not (no crop vs crop).&#60;/p&#62;
&#60;p&#62;The hover effect for products is defined on line 757 in the theme files config-woocommerce&#38;gt;woocommerce-mod.css line 757-763. You'll need to change the width percentage as well as the positioning at the least.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>creatorofstuff on "Replete product zoom on hover"</title>
			<link>http://www.kriesi.at/support/topic/replete-product-zoom-on-hover#post-96219</link>
			<pubDate>Mon, 11 Feb 2013 18:04:09 +0000</pubDate>
			<dc:creator>creatorofstuff</dc:creator>
			<guid isPermaLink="false">96219@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Obviously, I am not using the correct words when I ask my question. I do not what the effect you describe, although I do appreciate your reply. What I want is what is shown on this demo page:  &#60;a href=&#34;http://www.kriesi.at/themes/replete/shop/&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themes/replete/shop/&#60;/a&#62;  - and is the default for the theme.&#60;/p&#62;
&#60;p&#62;This effect currently is working for me exactly as is shown in the demo. All I am asking is for the ability to make this same effect (the default one you see there on that page) to be &#60;strong&#62;a little larger but not full size&#60;/strong&#62;, and for it to &#60;strong&#62;show the image in it's un-cropped version&#60;/strong&#62; instead of a slightly bigger version of the cropped one.&#60;/p&#62;
&#60;p&#62;Additionally, I want it to be &#60;strong&#62;on hover,&#60;/strong&#62; not click, &#60;em&#62;exactly as it works already.&#60;/em&#62;&#60;/p&#62;
&#60;p&#62;Does this make any sense? Sorry if I'm not explaining it well enough. If I had a page I would give you the link but unfortunately I'm developing locally until I understand the theme well enough to secure hosting and develop there. I might have to do sooner than I thought. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Replete product zoom on hover"</title>
			<link>http://www.kriesi.at/support/topic/replete-product-zoom-on-hover#post-96124</link>
			<pubDate>Mon, 11 Feb 2013 08:03:18 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">96124@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Replete does not support a hover effect but only a lightbox effect: &#60;a href=&#34;http://www.kriesi.at/themes/replete/product/simple-test-product-2/&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/themes/replete/product/simple-test-product-2/&#60;/a&#62; (click on the image to trigger it). The lightbox should display the &#34;full size&#34; version of the image which is not cropped. If this doesn't work in your case please post a link to a page where the lightbox doesn't work as expected. It's not possible to use another &#34;zoomed&#34; image instead of the full size image for the lightbox.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>creatorofstuff on "Replete product zoom on hover"</title>
			<link>http://www.kriesi.at/support/topic/replete-product-zoom-on-hover#post-96081</link>
			<pubDate>Sun, 10 Feb 2013 21:37:05 +0000</pubDate>
			<dc:creator>creatorofstuff</dc:creator>
			<guid isPermaLink="false">96081@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you for your reply. I'm a little confused because it looks like (from the demo) that you can only see a close up of part of the image at any given time on hover. I actually like what is built into Replete already and would really like to just use that. Except I would like it to be a *little* bigger zoom AND show the un-cropped version of the image. I don't really want the &#34;full&#34; sized image - that would be too big. Just enough so people can read the captions on the cards easily. Is that possible? (I'm kind of a Wordpress newbie so please assume I don't know much when you reply. Much appreciated!) Surely there is a way to enlarge the zoom and un-restrict the crop at the same time?&#60;/p&#62;
&#60;p&#62;If it's not possible to do with the Replete theme alone then you are saying this Magicplus Zoom can do exactly what I'm describing? (Note: I want this effect on hover, not click.) Again, I want the image bigger (and not cropped) on hover but not full size. &#60;/p&#62;
&#60;p&#62;Thanks again. (Unfortunately I tried to ask these things before purchasing Replete but could not get any response.) :(
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Replete product zoom on hover"</title>
			<link>http://www.kriesi.at/support/topic/replete-product-zoom-on-hover#post-96032</link>
			<pubDate>Sun, 10 Feb 2013 07:43:09 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">96032@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can use the magicplus zoom plugin: &#60;a href=&#34;http://inoplugs.com/magicplus&#34;&#62;http://www.magictoolbox.com/magiczoomplus/modules/woocommerce/&#60;/a&#62; which will show the fullsize image on mouse hover. You can also combine it with a lightbox.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>creatorofstuff on "Replete product zoom on hover"</title>
			<link>http://www.kriesi.at/support/topic/replete-product-zoom-on-hover#post-96014</link>
			<pubDate>Sun, 10 Feb 2013 04:28:25 +0000</pubDate>
			<dc:creator>creatorofstuff</dc:creator>
			<guid isPermaLink="false">96014@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I recently purchased Replete (beautiful!) and have tried unsuccessfully to figure something out. If it is in the forum then I am searching with the wrong words and I apologize. &#60;/p&#62;
&#60;p&#62;I'm creating a greeting card site. My products are varying sizes and shapes, some portrait, some landscape, and so forth. The consistent crop is good on the product pages because it looks cleaner. But I would very much like the actual card in its entirety to appear on hover, no matter the shape, not simply a larger version of the cropped image. Is that possible, and if so, please tell me how. &#60;/p&#62;
&#60;p&#62;Thank you so much in advance!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
