<?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: koballo</title>
		<link><a href='http://www.kriesi.at/support/profile/koballo'>koballo</a></link>
		<description>Support Forum - User Favorites: koballo</description>
		<language>en-US</language>
		<pubDate>Sat, 25 May 2013 00:57:21 +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 "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>
		<item>
			<title>vasikgreif on "Setting up WPML"</title>
			<link>http://www.kriesi.at/support/topic/setting-up-wpml#post-89937</link>
			<pubDate>Thu, 03 Jan 2013 23:07:50 +0000</pubDate>
			<dc:creator>vasikgreif</dc:creator>
			<guid isPermaLink="false">89937@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Works like a charm, thanks! Would you explain what was wrong, for others who might have this problem? Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Setting up WPML"</title>
			<link>http://www.kriesi.at/support/topic/setting-up-wpml#post-89931</link>
			<pubDate>Thu, 03 Jan 2013 22:37:52 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">89931@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I logged in and I think now you should be able to switch between languages. You will see that your Angular Admin menu button now has CS in front of it for the site main language.&#60;/p&#62;
&#60;p&#62;Don't forget to delete the account you've set up for me to use.&#60;/p&#62;
&#60;p&#62;Please let us know if all is working properly now.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Setting up WPML"</title>
			<link>http://www.kriesi.at/support/topic/setting-up-wpml#post-89716</link>
			<pubDate>Thu, 03 Jan 2013 02:05:08 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">89716@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please allow me to take a look and get you back on track. Set me up a temp wordpress admin account .. my email is usjahm (aaattt) gmail (dddooottt) com. &#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vasikgreif on "Setting up WPML"</title>
			<link>http://www.kriesi.at/support/topic/setting-up-wpml#post-89659</link>
			<pubDate>Wed, 02 Jan 2013 20:44:33 +0000</pubDate>
			<dc:creator>vasikgreif</dc:creator>
			<guid isPermaLink="false">89659@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, I just installed &#60;a href=&#34;http://inoplugs.com/wpml&#34;&#62;WPML&#60;/a&#62;, but cannot figure out how to set it up to be able to translate the theme. Basically, when I switch the language dropdown in admin, I don't get different versions of admin of the theme, like in this video &#60;a href=&#34;https://docs.google.com/file/d/0B8hqGBMSfHtKTXlhalZVZGE1Mm8/edit?pli=1..&#34; rel=&#34;nofollow&#34;&#62;https://docs.google.com/file/d/0B8hqGBMSfHtKTXlhalZVZGE1Mm8/edit?pli=1..&#60;/a&#62;. Any ideas? I'm on Wordpress 3.5, download Angular yesterday...&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
Vasik
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
