<?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: Changing style colors in WooCommerce Settings&#62;General, won&#039;t save!</title>
		<link>http://www.kriesi.at/support/topic/changing-style-colors-in-woocommerce-settingsgeneral-wont-save</link>
		<description>Support Forum - Topic: Changing style colors in WooCommerce Settings&gt;General, won&#039;t save!</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 12:55:11 +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/changing-style-colors-in-woocommerce-settingsgeneral-wont-save" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "Changing style colors in WooCommerce Settings&#62;General, won&#039;t save!"</title>
			<link>http://www.kriesi.at/support/topic/changing-style-colors-in-woocommerce-settingsgeneral-wont-save#post-86526</link>
			<pubDate>Tue, 04 Dec 2012 20:15:13 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">86526@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Brodersen,&#60;/p&#62;
&#60;p&#62;Your site is under construction and we are unable to view it with construction protection on.&#60;/p&#62;
&#60;p&#62;Typically, the way you edit specific items on a theme is using something like Firebug for Firefox or Chrome/Safari's Inspect Element feature. You identify the class that has the style and then you can add that class to the custom.css file in your css folder or the quick css in the styling tab of the theme settings.&#60;/p&#62;
&#60;p&#62;Since those are added after the theme styling, it takes those values.&#60;/p&#62;
&#60;p&#62;If you want to have exact control over all elements of the site, this is the way to go. &#60;/p&#62;
&#60;p&#62;Example: Changing the color of the price in the shop/catalog view. I inspect the price and see that it gets its color from the css::&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top #wrap_all ins {
color: #7E9A47;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Adding that to your custom.css or Quick CSS and changing the hex value will change the color for all items inside the ins tag. You could also use:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .amount {
color: #333;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Since the class is .amount for that item.&#60;/p&#62;
&#60;p&#62;If you can make your site viewable live, and can point to specific items you are having issues with we can try and help provide some additional css to modify it. If you are looking to do a lot of customization and modifications I would definitely recommend looking into a freelance developer. If you have a detailed list of everything you want changed, it should only take a developer comfortable with css a few hours to make the changes.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Brodersen on "Changing style colors in WooCommerce Settings&#62;General, won&#039;t save!"</title>
			<link>http://www.kriesi.at/support/topic/changing-style-colors-in-woocommerce-settingsgeneral-wont-save#post-86374</link>
			<pubDate>Mon, 03 Dec 2012 20:15:23 +0000</pubDate>
			<dc:creator>Brodersen</dc:creator>
			<guid isPermaLink="false">86374@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I hope you wont give up on me, because I can't find any help on google either (except one other person with the same problem who also didn't get help) :(
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Brodersen on "Changing style colors in WooCommerce Settings&#62;General, won&#039;t save!"</title>
			<link>http://www.kriesi.at/support/topic/changing-style-colors-in-woocommerce-settingsgeneral-wont-save#post-86373</link>
			<pubDate>Mon, 03 Dec 2012 20:14:20 +0000</pubDate>
			<dc:creator>Brodersen</dc:creator>
			<guid isPermaLink="false">86373@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It makes no sense if I'm the first person who ever had this problem. The WooCommerce style colors are awful.&#60;br /&#62;
Maybe I missed something?&#60;/p&#62;
&#60;p&#62;WooCommerce got the colors Primary, Secondary, Highlight, Content and Subtext in Settings, which I can't edit (or rather I can't save them after editing).&#60;br /&#62;
These colors then splits down and controls a large list of css values, including some coding that controls the gradients of buttons.&#60;/p&#62;
&#60;p&#62;Here is the CSS for what the WooCommerce 'Primary' color controls:&#60;/p&#62;
&#60;p&#62;a.button.alt, button.button.alt, input.button.alt, #respond input#submit.alt, #content input.button.alt {&#60;br /&#62;
	background: #ff2222;&#60;br /&#62;
	background: -webkit-gradient(linear, left top, left bottom, from(#ff2222), to(#96588a));&#60;br /&#62;
	background: -webkit-linear-gradient(#ad74a2, #96588a);&#60;br /&#62;
	background: -moz-linear-gradient(center top, #ff2222 0, #96588a 100%);&#60;br /&#62;
	background: -moz-gradient(center top, #ff2222 0, #96588a 100%);&#60;br /&#62;
	border-color: #76456c;&#60;br /&#62;
	color: #fff;&#60;br /&#62;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.6)&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;a.button.alt:hover, button.button.alt:hover, input.button.alt:hover, #respond input#submit.alt:hover, #content input.button.alt:hover {&#60;br /&#62;
	background: #ff2222;&#60;br /&#62;
	background: -webkit-gradient(linear, left top, left bottom, from(#ff2222), to(#864f7b));&#60;br /&#62;
	background: -webkit-linear-gradient(#FF0000, #864f7b);&#60;br /&#62;
	background: -moz-linear-gradient(center top, #ff2222 0, #864f7b 100%);&#60;br /&#62;
	background: -moz-gradient(center top, #ff2222 0, #864f7b 100%);&#60;br /&#62;
	color: #fff;&#60;br /&#62;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.6)&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.widget_layered_nav ul li.chosen a {&#60;br /&#62;
	padding: 0 6px 0 18px;&#60;br /&#62;
	border: 1px solid #ff2222;&#60;br /&#62;
	background: #ad74a2 url(../images/cross_white.png) no-repeat 6px center;&#60;br /&#62;
	box-shadow: inset 0 1px 1px rgba(255,255,255,0.5) #888;&#60;br /&#62;
	-webkit-box-shadow: inset 0 1px 1px rgba(255,255,255,0.5) #888;&#60;br /&#62;
	-moz-box-shadow: inset 0 1px 1px rgba(255,255,255,0.5) #888;&#60;br /&#62;
	color: #fff;&#60;br /&#62;
	-webkit-border-radius: 3px;&#60;br /&#62;
	-moz-border-radius: 3px;&#60;br /&#62;
	border-radius: 3px&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.widget_price_filter .ui-slider .ui-slider-handle {&#60;br /&#62;
	position: absolute;&#60;br /&#62;
	z-index: 2;&#60;br /&#62;
	width: .9em;&#60;br /&#62;
	height: .9em;&#60;br /&#62;
	-webkit-border-radius: 1em;&#60;br /&#62;
	-moz-border-radius: 1em;&#60;br /&#62;
	border-radius: 1em;&#60;br /&#62;
	border: 1px solid #150d14;&#60;br /&#62;
	cursor: pointer;&#60;br /&#62;
	background: #ff2222;&#60;br /&#62;
	background: -webkit-gradient(linear, left top, left bottom, from(#ff2222), to(#96588a));&#60;br /&#62;
	background: -webkit-linear-gradient(#ff2222, #96588a);&#60;br /&#62;
	background: -moz-linear-gradient(center top, #ff2222 0, #96588a 100%);&#60;br /&#62;
	background: -moz-gradient(center top, #ff2222 0, #96588a 100%);&#60;br /&#62;
	outline: 0;&#60;br /&#62;
	top: -0.3em;&#60;br /&#62;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.65);&#60;br /&#62;
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.65);&#60;br /&#62;
	box-shadow: 0 1px 2px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.65)&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.widget_price_filter .ui-slider .ui-slider-range {&#60;br /&#62;
	position: absolute;&#60;br /&#62;
	z-index: 1;&#60;br /&#62;
	font-size: .7em;&#60;br /&#62;
	display: block;&#60;br /&#62;
	border: 0;&#60;br /&#62;
	background: #ff2222 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAFUlEQVQIHWP4//9/PRMDA8NzEPEMADLLBU76a5idAAAAAElFTkSuQmCC) top repeat-x;&#60;br /&#62;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.5);&#60;br /&#62;
	-webkit-box-shadow: inset 0 0 0 1px rgba(0,0,0,0.5);&#60;br /&#62;
	-moz-box-shadow: inset 0 0 0 1px rgba(0,0,0,0.5);&#60;br /&#62;
	-webkit-border-radius: 1em;&#60;br /&#62;
	-moz-border-radius: 1em;&#60;br /&#62;
	border-radius: 1em&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;(+ I have to make a gradient as well, which means LOTS of copy/pasting each time I want to try a new color to match my theme).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Brodersen on "Changing style colors in WooCommerce Settings&#62;General, won&#039;t save!"</title>
			<link>http://www.kriesi.at/support/topic/changing-style-colors-in-woocommerce-settingsgeneral-wont-save#post-86288</link>
			<pubDate>Mon, 03 Dec 2012 11:27:45 +0000</pubDate>
			<dc:creator>Brodersen</dc:creator>
			<guid isPermaLink="false">86288@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;One more question. If you look at another page like this:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.xotc.dk/testside/smagninger/smagninger/lordag-d-23-feb-kl-19-00-champagnesmagning/&#34; rel=&#34;nofollow&#34;&#62;http://www.xotc.dk/testside/smagninger/smagninger/lordag-d-23-feb-kl-19-00-champagnesmagning/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;, you can see there are whites boxes, which I also cannot control. This might also be related to WooCommerce?&#60;/p&#62;
&#60;p&#62;I would like to be able to change these white boxes to a different darker color to match the theme style.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Brodersen on "Changing style colors in WooCommerce Settings&#62;General, won&#039;t save!"</title>
			<link>http://www.kriesi.at/support/topic/changing-style-colors-in-woocommerce-settingsgeneral-wont-save#post-86281</link>
			<pubDate>Mon, 03 Dec 2012 10:53:06 +0000</pubDate>
			<dc:creator>Brodersen</dc:creator>
			<guid isPermaLink="false">86281@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Sure:&#60;/p&#62;
&#60;p&#62;(please be aware this is still a test site)&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.xotc.dk/testside/&#34; rel=&#34;nofollow&#34;&#62;http://www.xotc.dk/testside/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Again, it is the WooCommerce styles (price colors + color of description text over the prices), that I would like to be in control of.&#60;/p&#62;
&#60;p&#62;At the time I'm writing this, they are #7e9a47 and #fba0f9 according to color picker, and I have no idea why they are these colors.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Changing style colors in WooCommerce Settings&#62;General, won&#039;t save!"</title>
			<link>http://www.kriesi.at/support/topic/changing-style-colors-in-woocommerce-settingsgeneral-wont-save#post-85449</link>
			<pubDate>Mon, 26 Nov 2012 21:40:10 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">85449@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Can you give us a link to your website? We would like to inspect to give you a CSS solution. To get you started, try to put this on your custom.css&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.amount {
color: red;
font-size: 20px!important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Brodersen on "Changing style colors in WooCommerce Settings&#62;General, won&#039;t save!"</title>
			<link>http://www.kriesi.at/support/topic/changing-style-colors-in-woocommerce-settingsgeneral-wont-save#post-85445</link>
			<pubDate>Mon, 26 Nov 2012 20:35:21 +0000</pubDate>
			<dc:creator>Brodersen</dc:creator>
			<guid isPermaLink="false">85445@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes, but that's what leads to my question: How do I control the colors of that plugin? At the moment they seem to change randomly depending on what other colors I use in the theme.&#60;/p&#62;
&#60;p&#62;How can I control the WooCommerce style font colors?&#60;/p&#62;
&#60;p&#62;The current color are horrible and doesn't match the other colors of the theme.&#60;/p&#62;
&#60;p&#62;Currently the price of a product is a green/brown'ish color, and the description of a product is light pink, and since the WooCommerce Style color settings doesn't work, I don't know how I change them to match my Propulsion themed website.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Changing style colors in WooCommerce Settings&#62;General, won&#039;t save!"</title>
			<link>http://www.kriesi.at/support/topic/changing-style-colors-in-woocommerce-settingsgeneral-wont-save#post-84326</link>
			<pubDate>Fri, 16 Nov 2012 22:12:09 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">84326@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Brodersen,&#60;/p&#62;
&#60;p&#62;As far as I know the theme doesn't use those settings at all. So changing them shouldn't effect the front end of propulsion.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Brodersen on "Changing style colors in WooCommerce Settings&#62;General, won&#039;t save!"</title>
			<link>http://www.kriesi.at/support/topic/changing-style-colors-in-woocommerce-settingsgeneral-wont-save#post-84225</link>
			<pubDate>Fri, 16 Nov 2012 13:10:33 +0000</pubDate>
			<dc:creator>Brodersen</dc:creator>
			<guid isPermaLink="false">84225@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm trying to change the style colors for the WooCommerce products displayed on my site, but when I go to WooCommerce&#38;gt;Settings&#38;gt;General, and pick new colors in the Style section, the colors just reset when I click Save Changes.&#60;/p&#62;
&#60;p&#62;The default colors are:&#60;br /&#62;
Primary: #ad74a2&#60;br /&#62;
Secondary: #f7f6f7&#60;br /&#62;
Highlight: #85ad74&#60;br /&#62;
Content: #ffffff&#60;br /&#62;
Subtext: #777777&#60;/p&#62;
&#60;p&#62;I would like to be able to change them so they fit the Propulsion theme better.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
