<?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 - Forum: FAQ &#38; Video Tutorials - Recent Posts</title>
		<link>http://www.kriesi.at/support/forum/faq-amp-video-tutorials</link>
		<description>Support Forum - Forum: FAQ &amp; Video Tutorials - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Tue, 18 Jun 2013 22:11:14 +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/forum/faq-amp-video-tutorials" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Not show number of COMMENTS on homepage/any grid layout - show only date/author"</title>
			<link>http://www.kriesi.at/support/topic/not-show-number-of-comments-on-homepageany-grid-layout-show-only-dateauthor#post-119108</link>
			<pubDate>Tue, 18 Jun 2013 05:49:43 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">119108@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Insert following code into the quick css field&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;ol.comment-list{
display: none !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>alexanton on "Not show number of COMMENTS on homepage/any grid layout - show only date/author"</title>
			<link>http://www.kriesi.at/support/topic/not-show-number-of-comments-on-homepageany-grid-layout-show-only-dateauthor#post-119088</link>
			<pubDate>Tue, 18 Jun 2013 00:50:18 +0000</pubDate>
			<dc:creator>alexanton</dc:creator>
			<guid isPermaLink="false">119088@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks, Ismael, very helpful!&#60;/p&#62;
&#60;p&#62;On 2), if I disable WP comments my facebook comments also disappear. How to get around that issue? I would like to get rid of only FB comments.&#60;/p&#62;
&#60;p&#62;Thanks again!&#60;/p&#62;
&#60;p&#62;Alex
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Not show number of COMMENTS on homepage/any grid layout - show only date/author"</title>
			<link>http://www.kriesi.at/support/topic/not-show-number-of-comments-on-homepageany-grid-layout-show-only-dateauthor#post-118936</link>
			<pubDate>Mon, 17 Jun 2013 09:18:36 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">118936@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;1.) Edit wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\ postslider.php then find this code on line 317&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if ( $commentCount != &#38;quot;0&#38;quot; &#124;&#124; comments_open($the_id) &#38;amp;&#38;amp; $entry-&#38;gt;post_type != &#38;#39;portfolio&#38;#39;)
						{
							$link_add = $commentCount === &#38;quot;0&#38;quot; ? &#38;quot;#respond&#38;quot; : &#38;quot;#comments&#38;quot;;
							$text_add = $commentCount === &#38;quot;1&#38;quot; ? __(&#38;#39;Comment&#38;#39;, &#38;#39;avia_framework&#38;#39; ) : __(&#38;#39;Comments&#38;#39;, &#38;#39;avia_framework&#38;#39; );

							$output .= &#38;quot;&#38;lt;div class=&#38;#39;slide-meta-comments&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;{$link}{$link_add}&#38;#39;&#38;gt;{$commentCount} {$text_add}&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;&#38;lt;div class=&#38;#39;slide-meta-del&#38;#39;&#38;gt;/&#38;lt;/div&#38;gt;&#38;quot;;
						}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace it with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if ( $commentCount != &#38;quot;0&#38;quot; &#124;&#124; comments_open($the_id) &#38;amp;&#38;amp; $entry-&#38;gt;post_type != &#38;#39;portfolio&#38;#39;)
						{
							$link_add = $commentCount === &#38;quot;0&#38;quot; ? &#38;quot;#respond&#38;quot; : &#38;quot;#comments&#38;quot;;
							$text_add = $commentCount === &#38;quot;1&#38;quot; ? __(&#38;#39;Comment&#38;#39;, &#38;#39;avia_framework&#38;#39; ) : __(&#38;#39;Comments&#38;#39;, &#38;#39;avia_framework&#38;#39; );

							//$output .= &#38;quot;&#38;lt;div class=&#38;#39;slide-meta-comments&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;{$link}{$link_add}&#38;#39;&#38;gt;{$commentCount} {$text_add}&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;&#38;lt;div class=&#38;#39;slide-meta-del&#38;#39;&#38;gt;/&#38;lt;/div&#38;gt;&#38;quot;;
						}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2.) If you want to disable the wp comment. Open single.php then find this code&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//wordpress function that loads the comments template &#38;quot;comments.php&#38;quot;
					comments_template( &#38;#39;/includes/comments.php&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace it with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//wordpress function that loads the comments template &#38;quot;comments.php&#38;quot;
					//comments_template( &#38;#39;/includes/comments.php&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>alexanton on "Not show number of COMMENTS on homepage/any grid layout - show only date/author"</title>
			<link>http://www.kriesi.at/support/topic/not-show-number-of-comments-on-homepageany-grid-layout-show-only-dateauthor#post-118812</link>
			<pubDate>Sun, 16 Jun 2013 16:14:22 +0000</pubDate>
			<dc:creator>alexanton</dc:creator>
			<guid isPermaLink="false">118812@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi guys, I am really happy with the Enfold theme I recently bought. Beautiful!&#60;/p&#62;
&#60;p&#62;I am editing the blog and would like to change a few things that I couldn't locate in other threads:&#60;/p&#62;
&#60;p&#62;1. Currently the number of comments and date are displayed in the blog thumbnails in grid layout. I would like to have only author and date - how can that be done?&#60;/p&#62;
&#60;p&#62;2. I have comments activated because I want to allow only facebook comments, but no wordpress. As you can see in the following post, both WP and facebook comments are displayed (in fact, facebook comments turned into WP's). This looks bad and does not make sense. I also would like to remove the word &#34;Comentários&#34;. =&#38;gt; &#60;a href=&#34;http://transforme.is/20-maneiras-de-encontrar-a-sua-vocacao/&#34; rel=&#34;nofollow&#34;&#62;http://transforme.is/20-maneiras-de-encontrar-a-sua-vocacao/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks for your help!&#60;/p&#62;
&#60;p&#62;Alex
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "edit front page"</title>
			<link>http://www.kriesi.at/support/topic/edit-front-page#post-115446</link>
			<pubDate>Sat, 01 Jun 2013 02:53:56 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">115446@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please create a test site. Activate Enfold then Import the dummy data. It will give you a lot of ideas how the theme works. You can also watch these videos to learn more about the theme. &#60;a href=&#34;https://vimeo.com/channels/aviathemes&#34; rel=&#34;nofollow&#34;&#62;https://vimeo.com/channels/aviathemes&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You can set the front page on Enfold &#38;gt; Theme Settings &#38;gt; Frontpage Settings, select the page.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>asosbravo on "edit front page"</title>
			<link>http://www.kriesi.at/support/topic/edit-front-page#post-115375</link>
			<pubDate>Fri, 31 May 2013 17:45:51 +0000</pubDate>
			<dc:creator>asosbravo</dc:creator>
			<guid isPermaLink="false">115375@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;hello&#60;br /&#62;
i´ve been seeing a video of editing front page.&#60;br /&#62;
i don´t have this option in my enfold theme, edit front page, what can i do? please
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Coffeecup forms"</title>
			<link>http://www.kriesi.at/support/topic/coffeecup-forms#post-114369</link>
			<pubDate>Tue, 28 May 2013 06:39:29 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">114369@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Your link shows me a 404 page and it seems like the &#34;pagina de probe 2&#34; page doesn't exist at all. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>teotaban on "Coffeecup forms"</title>
			<link>http://www.kriesi.at/support/topic/coffeecup-forms#post-114352</link>
			<pubDate>Tue, 28 May 2013 06:19:05 +0000</pubDate>
			<dc:creator>teotaban</dc:creator>
			<guid isPermaLink="false">114352@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;br /&#62;
I like to use in my websites custom forms builded with coffeecup webform builder, because this software give me  more posibilities but with Enfold Theme doesn´t work.&#60;br /&#62;
This is the code:&#60;br /&#62;
&#38;lt;script type=&#34;text/javascript&#34;&#38;gt;document.write(unescape(&#34;%3Ciframe id=\&#34;fb_iframe\&#34; src=\&#34;Contact-Us-DTR.php&#34; + window.location.search + &#34;\&#34; width=\&#34;662\&#34; height=\&#34;710\&#34;allowtransparency=\&#34;true\&#34; scrolling=\&#34;no\&#34; frameborder=\&#34;0\&#34;%3E&#60;a href=&#34;Contact-Us-DTR.php&#34; title=&#34;Contact-Us-DTR&#34;&#62;Check out my CoffeeCup Form&#60;/a&#62;%3C/iframe%3E&#34;));&#38;lt;/script&#38;gt;&#60;br /&#62;
&#38;lt;noscript&#38;gt;&#60;br /&#62;
  &#38;lt;iframe width=&#34;662&#34; height=&#34;710&#34; style=&#34;border:none; background:transparent; overflow:hidden;&#34;&#60;br /&#62;
  id=&#34;fb_iframe&#34; src=&#34;Contact-Us-DTR/Contact-Us-DTR.html&#34;&#38;gt;&#60;br /&#62;
    &#60;a href=&#34;Contact-Us-DTR.php&#34; title=&#34;Contact-Us-DTR&#34;&#62;Check out my&#60;br /&#62;
    CoffeeCup Form&#60;/a&#62;&#60;br /&#62;
  &#38;lt;/iframe&#38;gt;&#60;br /&#62;
&#38;lt;/noscript&#38;gt;&#60;/p&#62;
&#60;p&#62;and this is what i have:&#60;br /&#62;
&#60;a href=&#34;http://dentaltourismromania.co.uk/pagina-de-probe-2/&#34; rel=&#34;nofollow&#34;&#62;http://dentaltourismromania.co.uk/pagina-de-probe-2/&#60;/a&#62;&#60;br /&#62;
Can you help me?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Question about Woocommerce Product Variation"</title>
			<link>http://www.kriesi.at/support/topic/question-about-woocommerce-product-variation#post-112199</link>
			<pubDate>Sun, 19 May 2013 07:07:47 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">112199@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; I think the url changed to &#60;a href=&#34;http://docs.woothemes.com/document/product-variations/&#34; rel=&#34;nofollow&#34;&#62;http://docs.woothemes.com/document/product-variations/&#60;/a&#62; &#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>prettyfish on "Question about Woocommerce Product Variation"</title>
			<link>http://www.kriesi.at/support/topic/question-about-woocommerce-product-variation#post-112198</link>
			<pubDate>Sun, 19 May 2013 04:31:43 +0000</pubDate>
			<dc:creator>prettyfish</dc:creator>
			<guid isPermaLink="false">112198@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;but the link to setting up pruduct attributes is now a 404
&#60;/p&#62;</description>
		</item>
		<item>
			<title>prettyfish on "Question about Woocommerce Product Variation"</title>
			<link>http://www.kriesi.at/support/topic/question-about-woocommerce-product-variation#post-112197</link>
			<pubDate>Sun, 19 May 2013 02:46:46 +0000</pubDate>
			<dc:creator>prettyfish</dc:creator>
			<guid isPermaLink="false">112197@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;This is so helpful. Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xrisxal2000 on "How to add link to a portfolio item"</title>
			<link>http://www.kriesi.at/support/topic/how-to-add-link-to-a-portfolio-item#post-111734</link>
			<pubDate>Thu, 16 May 2013 20:07:15 +0000</pubDate>
			<dc:creator>xrisxal2000</dc:creator>
			<guid isPermaLink="false">111734@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Dude,&#60;br /&#62;
great support, great plugin&#60;/p&#62;
&#60;p&#62;Kind regards,&#60;br /&#62;
xrisxal2000
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to add link to a portfolio item"</title>
			<link>http://www.kriesi.at/support/topic/how-to-add-link-to-a-portfolio-item#post-111592</link>
			<pubDate>Thu, 16 May 2013 06:43:57 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">111592@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can use &#60;a href=&#34;http://wordpress.org/extend/plugins/post-types-order/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/post-types-order/&#60;/a&#62; to order the portfolio items. Another user had problems with the free version: &#60;a href=&#34;http://www.kriesi.at/support/topic/remove-rollover-effect-on-the-portfolio#post-110067&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/remove-rollover-effect-on-the-portfolio#post-110067&#60;/a&#62; - you maybe need to upgrade to the advanced post types order plugin.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xrisxal2000 on "How to add link to a portfolio item"</title>
			<link>http://www.kriesi.at/support/topic/how-to-add-link-to-a-portfolio-item#post-111480</link>
			<pubDate>Wed, 15 May 2013 22:03:00 +0000</pubDate>
			<dc:creator>xrisxal2000</dc:creator>
			<guid isPermaLink="false">111480@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear Ismael, thanks for the response,&#60;br /&#62;
one more question pls...&#60;/p&#62;
&#60;p&#62;pls visit &#60;a href=&#34;http://www.webex.gr/wpsitia&#34; rel=&#34;nofollow&#34;&#62;http://www.webex.gr/wpsitia&#60;/a&#62;,&#60;br /&#62;
in front page you willl see 6 pics, how i change the sequence?? how to choose which photo i need first, which photo second etc&#60;/p&#62;
&#60;p&#62;Kind regards,&#60;br /&#62;
xrisxal2000
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to add link to a portfolio item"</title>
			<link>http://www.kriesi.at/support/topic/how-to-add-link-to-a-portfolio-item#post-110781</link>
			<pubDate>Mon, 13 May 2013 05:33:36 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">110781@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;It is automatically link to the single portfolio. You cannot add a link on them. You can only add links on the images.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>xrisxal2000 on "How to add link to a portfolio item"</title>
			<link>http://www.kriesi.at/support/topic/how-to-add-link-to-a-portfolio-item#post-110669</link>
			<pubDate>Sun, 12 May 2013 10:50:31 +0000</pubDate>
			<dc:creator>xrisxal2000</dc:creator>
			<guid isPermaLink="false">110669@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;enfold template.&#60;/p&#62;
&#60;p&#62;i cannot enter the link somewhere , or i don't know where to change it...&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.webex.gr/wpsitia&#34; rel=&#34;nofollow&#34;&#62;http://www.webex.gr/wpsitia&#60;/a&#62; you will see a portfolio with 6 items...i need to add alink in each one of them.&#60;/p&#62;
&#60;p&#62;Kind regards,&#60;br /&#62;
xrisxal2000
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "What is a socket?"</title>
			<link>http://www.kriesi.at/support/topic/what-is-a-socket#post-110566</link>
			<pubDate>Sat, 11 May 2013 19:42:48 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">110566@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Yes, nothing epic :) &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>polyGeek on "What is a socket?"</title>
			<link>http://www.kriesi.at/support/topic/what-is-a-socket#post-110564</link>
			<pubDate>Sat, 11 May 2013 19:30:18 +0000</pubDate>
			<dc:creator>polyGeek</dc:creator>
			<guid isPermaLink="false">110564@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Dude. With a name like &#34;socket&#34; it sounded much more impressive than that. :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "What is a socket?"</title>
			<link>http://www.kriesi.at/support/topic/what-is-a-socket#post-110520</link>
			<pubDate>Sat, 11 May 2013 15:12:58 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">110520@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; The socket is the last content element underneath the footer widgets - it normally contains the copyright message. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>polyGeek on "What is a socket?"</title>
			<link>http://www.kriesi.at/support/topic/what-is-a-socket#post-110513</link>
			<pubDate>Sat, 11 May 2013 13:33:19 +0000</pubDate>
			<dc:creator>polyGeek</dc:creator>
			<guid isPermaLink="false">110513@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I just downloaded the Enfold theme and I'm trying to figure out how things work. I see references to &#34;sockets&#34; but no idea what they are.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "link and bold fonts have same color cant be diffrentiate"</title>
			<link>http://www.kriesi.at/support/topic/link-and-bold-fonts-have-same-color-cant-be-diffrentiate-1#post-110203</link>
			<pubDate>Fri, 10 May 2013 00:56:22 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">110203@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please add this on your custom.css or Quick CSS.&#60;/p&#62;
&#60;p&#62;This is for the links.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.main_color a {
color: #8BBA34 !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This is for the bold text.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.main_color b {
color: #8BBA34 !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kriru on "link and bold fonts have same color cant be diffrentiate"</title>
			<link>http://www.kriesi.at/support/topic/link-and-bold-fonts-have-same-color-cant-be-diffrentiate-1#post-109974</link>
			<pubDate>Thu, 09 May 2013 05:10:25 +0000</pubDate>
			<dc:creator>kriru</dc:creator>
			<guid isPermaLink="false">109974@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael,&#60;/p&#62;
&#60;p&#62;The website in question is - &#60;a href=&#34;http://web.guru99.com/&#34; rel=&#34;nofollow&#34;&#62;http://web.guru99.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The theme I am using is - &#34;EnFold&#34;&#60;/p&#62;
&#60;p&#62;The setting I am modifying is - &#60;a href=&#34;http://screencast.com/t/XOoBtETh&#34; rel=&#34;nofollow&#34;&#62;http://screencast.com/t/XOoBtETh&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The problem I am facing is highlight and links are same color - &#60;a href=&#34;http://screencast.com/t/kc3V7qhiedba&#34; rel=&#34;nofollow&#34;&#62;http://screencast.com/t/kc3V7qhiedba&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I am not sure which setting to modify to affect this
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "link and bold fonts have same color cant be diffrentiate"</title>
			<link>http://www.kriesi.at/support/topic/link-and-bold-fonts-have-same-color-cant-be-diffrentiate#post-109762</link>
			<pubDate>Wed, 08 May 2013 13:24:33 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">109762@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi kriru,&#60;/p&#62;
&#60;p&#62;I'm not sure which theme you are using, but generally you can change the color of the bold text by 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 p strong {
color: #333;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Just change the color code to the color you want.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "link and bold fonts have same color cant be diffrentiate"</title>
			<link>http://www.kriesi.at/support/topic/link-and-bold-fonts-have-same-color-cant-be-diffrentiate-1#post-109686</link>
			<pubDate>Wed, 08 May 2013 09:10:34 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">109686@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello Dear Sir,&#60;/p&#62;
&#60;p&#62;What theme do you have in your website?&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kriru on "link and bold fonts have same color cant be diffrentiate"</title>
			<link>http://www.kriesi.at/support/topic/link-and-bold-fonts-have-same-color-cant-be-diffrentiate-1#post-109621</link>
			<pubDate>Wed, 08 May 2013 05:27:17 +0000</pubDate>
			<dc:creator>kriru</dc:creator>
			<guid isPermaLink="false">109621@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear sir,&#60;/p&#62;
&#60;p&#62;In main content bold fonts and links have same color and cannot be diffrentiate.so how can i change the color of link an bold font
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kriru on "link and bold fonts have same color cant be diffrentiate"</title>
			<link>http://www.kriesi.at/support/topic/link-and-bold-fonts-have-same-color-cant-be-diffrentiate#post-109620</link>
			<pubDate>Wed, 08 May 2013 05:25:29 +0000</pubDate>
			<dc:creator>kriru</dc:creator>
			<guid isPermaLink="false">109620@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear sir,&#60;/p&#62;
&#60;p&#62;In main content bold fonts and links have same color and cannot be diffrentiate.so how can i change the color of link an bold font
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Changing fonts for products. Pictures are strectched."</title>
			<link>http://www.kriesi.at/support/topic/changing-fonts-for-products-pictures-are-strectched#post-108273</link>
			<pubDate>Wed, 01 May 2013 20:34:30 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">108273@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Yes, you can style a specific category page but only the overview page of a certain category not the single view of the products included on that category. On the category overview page all you can change is the title of the products and the add to cart button text. For example you have a category named jewelry. You can add something like this on your custom.css or Quick CSS.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.term-jewelry .product h3.cufon_headings {
font-size: 20px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Another example is shoes. You can add .term-shoes instead. &#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>KDSfrog on "Changing fonts for products. Pictures are strectched."</title>
			<link>http://www.kriesi.at/support/topic/changing-fonts-for-products-pictures-are-strectched#post-108262</link>
			<pubDate>Wed, 01 May 2013 19:48:34 +0000</pubDate>
			<dc:creator>KDSfrog</dc:creator>
			<guid isPermaLink="false">108262@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;So if I style Each specific category page will it change the fonts for the products on that page???&#60;br /&#62;
And if so where do I do this SPECIFICALLY...&#60;br /&#62;
Thanks...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Changing fonts for products. Pictures are strectched."</title>
			<link>http://www.kriesi.at/support/topic/changing-fonts-for-products-pictures-are-strectched#post-108098</link>
			<pubDate>Wed, 01 May 2013 05:17:17 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">108098@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;There is no way to manually specify a styling for each product. Although you can style a specific category page which, I guess, not the way you want it. &#60;/p&#62;
&#60;p&#62;Please try to regenerate the thumbnails using this plugin. &#60;a href=&#34;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>KDSfrog on "Changing fonts for products. Pictures are strectched."</title>
			<link>http://www.kriesi.at/support/topic/changing-fonts-for-products-pictures-are-strectched#post-108071</link>
			<pubDate>Wed, 01 May 2013 02:05:12 +0000</pubDate>
			<dc:creator>KDSfrog</dc:creator>
			<guid isPermaLink="false">108071@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Okay some basic questions:&#60;br /&#62;
I have Abundance and have used shortcodes to put products into certain pages not just the SHOP page. i.e: Bracelets on a bracelet page, Necklaces on the Necklace page, etc. But now I want to add CSS to make the font and sizes specific to my products across the board.&#60;br /&#62;
 Where do I put the CSS code, in the quick CSS? and how do I specify my products on this one.&#60;/p&#62;
&#60;p&#62;Also my pictures are showing up stretched, I imported them before I got this theme do I have to upload them again or where do I see the correct sizes they should be not to be misshapen? how do I fix this...&#60;br /&#62;
Thanks.&#60;br /&#62;
Hope you can help a newbie...&#60;br /&#62;
KDS
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
