<?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: Change &#34;view cart&#34; button</title>
		<link>http://www.kriesi.at/support/topic/change-view-cart-button</link>
		<description>Support Forum - Topic: Change &quot;view cart&quot; button</description>
		<language>en-US</language>
		<pubDate>Wed, 19 Jun 2013 16:32:35 +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/change-view-cart-button" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "Change &#34;view cart&#34; button"</title>
			<link>http://www.kriesi.at/support/topic/change-view-cart-button#post-91197</link>
			<pubDate>Fri, 11 Jan 2013 20:48:27 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">91197@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Great! Glad Nick was able to help you out :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Delphine on "Change &#34;view cart&#34; button"</title>
			<link>http://www.kriesi.at/support/topic/change-view-cart-button#post-91132</link>
			<pubDate>Fri, 11 Jan 2013 13:26:49 +0000</pubDate>
			<dc:creator>Delphine</dc:creator>
			<guid isPermaLink="false">91132@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Nick,&#60;/p&#62;
&#60;p&#62;Thank you so much for your reply, I have found, it's the first one : div .container a.button{.&#60;br /&#62;
Have a nice day,&#60;br /&#62;
Delphine
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Change &#34;view cart&#34; button"</title>
			<link>http://www.kriesi.at/support/topic/change-view-cart-button#post-90907</link>
			<pubDate>Thu, 10 Jan 2013 09:25:47 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">90907@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;You see in the css you posted the first line; The one with all the commas in it? Each comma separates a different place where that code is used. So in line&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;div .container a.button, div a.button, div .container button.button, div .container input.button, div .container #review_form #submit&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The code is used in 5 places and in fact that one line can be rewritten like so. Its all put together in one line to save space. I added your code to the 5 versions, and now just pick the correct one and paste it at the end of your custom.css file&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;div .container a.button{
font-size: 14px;
font-family: nixie one;
text-decoration: blink;
}

div a.button{
font-size: 14px;
font-family: nixie one;
text-decoration: blink;
}

div .container button.button{
font-size: 14px;
font-family: nixie one;
text-decoration: blink;
}

div .container input.button{
font-size: 14px;
font-family: nixie one;
text-decoration: blink;
}

div .container #review_form #submit {
font-size: 14px;
font-family: nixie one;
text-decoration: blink;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So you need to figure out which of these 5 is the one that you want changed. Since you didnt provide me with enough information about the location of the button, I am not really sure. You can look through Chrome developer tools to get the selector on the page where you want to change the button.&#60;/p&#62;
&#60;p&#62;The final code *which you would put at the end of custom.css file so it overrides the previous css. (never edit css files directly since an update to the theme will overwrite them and by then you will forget what you edited)&#60;/p&#62;
&#60;p&#62;***Rememeber, You only need to add *only one* of the 5 versions i put up above.****&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Delphine on "Change &#34;view cart&#34; button"</title>
			<link>http://www.kriesi.at/support/topic/change-view-cart-button#post-90783</link>
			<pubDate>Wed, 09 Jan 2013 11:07:11 +0000</pubDate>
			<dc:creator>Delphine</dc:creator>
			<guid isPermaLink="false">90783@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I have a little question, I try to change the &#34;view cart &#34; button  - which appear when you add a product to your cart -&#60;br /&#62;
here :&#60;/p&#62;
&#60;p&#62;in the woocommerce-mod.css, line  1249 : &#60;/p&#62;
&#60;p&#62;div .container a.button, div a.button, div .container button.button, div .container input.button, div .container #review_form #submit {&#60;br /&#62;
color: white;&#60;br /&#62;
padding: 10px;&#60;br /&#62;
line-height: 1em;&#60;br /&#62;
margin: 4px 2px 0 0;&#60;br /&#62;
float: left;&#60;br /&#62;
font-size: 12px;&#60;br /&#62;
width: auto;&#60;br /&#62;
vertical-align: middle;&#60;br /&#62;
text-align: center;&#60;br /&#62;
text-decoration: none;&#60;br /&#62;
border: none;&#60;br /&#62;
cursor: pointer;&#60;br /&#62;
font-family: lucida console;&#60;br /&#62;
-webkit-border-radius: 3px;&#60;br /&#62;
-moz-border-radius: 3px;&#60;br /&#62;
border-radius: 3px;&#60;br /&#62;
position: relative;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;But it change all button of my site (add to cart ...etc )&#60;br /&#62;
So where or how I can change just the &#34;view cart&#34; like this : &#60;/p&#62;
&#60;p&#62;font-size: 14px;&#60;br /&#62;
font-family: nixie one;&#60;br /&#62;
text-decoration: blink;&#60;/p&#62;
&#60;p&#62;Than you in advance&#60;br /&#62;
Delphine
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
