<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>

		<title>Font Awesome Integration.. &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/font-awesome-integration/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/font-awesome-integration/feed/</link>
		<description></description>
		<lastBuildDate>Fri, 10 Oct 2025 18:53:41 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/font-awesome-integration/#post-108222</guid>
					<title><![CDATA[Font Awesome Integration..]]></title>
					<link>https://theme.co/archive/forums/topic/font-awesome-integration/#post-108222</link>
					<pubDate>Fri, 19 Sep 2014 19:29:09 +0000</pubDate>
					<dc:creator>CharliePryor</dc:creator>

					<description>
						<![CDATA[
						<p>So, with Font Awesome now involved and all&#8230; does this mean that all of these work out of the box now?<br />
<a href="http://fortawesome.github.io/Font-Awesome/cheatsheet/" rel="nofollow">http://fortawesome.github.io/Font-Awesome/cheatsheet/</a></p>
<p>Thanks!</p>
<p>&#8211; <a href="http://pryormedia.net" target="_blank" rel="nofollow">Charlie</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/font-awesome-integration/#post-108290</guid>
					<title><![CDATA[Reply To: Font Awesome Integration..]]></title>
					<link>https://theme.co/archive/forums/topic/font-awesome-integration/#post-108290</link>
					<pubDate>Fri, 19 Sep 2014 20:47:58 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Charlie,</p>
<p>Thanks for posting in.</p>
<p>Nope, not all yet, X still uses 4.0.3 Version.</p>
<p>But, can be overridden by adding this code at your child theme&#8217;s functions.php</p>
<p><code>add_action(&#039;wp_head&#039;, function(){ echo &#039;&lt;link href=&quot;//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot; &gt;&#039;; }, 99999 );</code></p>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/font-awesome-integration/#post-209338</guid>
					<title><![CDATA[Reply To: Font Awesome Integration..]]></title>
					<link>https://theme.co/archive/forums/topic/font-awesome-integration/#post-209338</link>
					<pubDate>Wed, 18 Feb 2015 16:14:29 +0000</pubDate>
					<dc:creator>CharliePryor</dc:creator>

					<description>
						<![CDATA[
						<p>Is this still relevant in using Font Awesome in this theme? If I want to use icons on pages built with visual composer, can I use Font Awesome in regular text elements like I normally would anything else?</p>
<p>Your forum/knowledge base isn&#8217;t pulling up any results when I look for information on Font Awesome at all. Only reason I found even this much was because I asked about it a long time ago and it&#8217;s still in &#8220;my topics&#8221;.</p>
<p>Basically&#8230; how can I use font awesome icons? It isn&#8217;t working when I try. Thanks.</p>
<p>I know you&#8217;ll ask me for the URL and all that jazz, but this is for a client site, which has verified their purchase on their site, which I&#8217;ll include the URL for in a private reply</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/font-awesome-integration/#post-209341</guid>
					<title><![CDATA[Reply To: Font Awesome Integration..]]></title>
					<link>https://theme.co/archive/forums/topic/font-awesome-integration/#post-209341</link>
					<pubDate>Wed, 18 Feb 2015 16:16:13 +0000</pubDate>
					<dc:creator>CharliePryor</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/font-awesome-integration/#post-209573</guid>
					<title><![CDATA[Reply To: Font Awesome Integration..]]></title>
					<link>https://theme.co/archive/forums/topic/font-awesome-integration/#post-209573</link>
					<pubDate>Wed, 18 Feb 2015 21:15:54 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>The same idea applies since our latest bundled font-awesome is still using 4.2.0 while the cheatsheets keeps updated. And it&#8217;s now on 4.3.0 version.</p>
<p>You can always use existing icons provided for the theme. And it&#8217;s something like, <code>[icon type=&quot;adjust&quot;]</code> or simply <code>&lt;i class=&quot;x-icon x-icon-adjust&quot;&gt;&lt;/i&gt;</code>.</p>
<p>So if you wish to use icon that aren&#8217;t present from X&#8217;s default css, then you will have to create your own. ( optionally, follow the previous code for embedded the latest, but this time using 4.3.0 )</p>
<p>Add this at child theme&#8217;s style.css</p>
<pre><code>//redefine font, add this once
.x-icon {
font-family : &#039;fontawesome&#039;, FontAwesome;
}

//your custom fonts and you can create as many as you want.
.x-icon-my_custom:before {
content:&quot;\f17a&quot;;
}

</code></pre>
<p>Then just do it like this <code>&lt;i class=&quot;x-icon x-icon-my_custom&quot;&gt;&lt;/i&gt;</code> or <code>[icon type=&quot;my_custom&quot;]</code></p>
<p>Hope this helps 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/font-awesome-integration/#post-209710</guid>
					<title><![CDATA[Reply To: Font Awesome Integration..]]></title>
					<link>https://theme.co/archive/forums/topic/font-awesome-integration/#post-209710</link>
					<pubDate>Thu, 19 Feb 2015 00:28:20 +0000</pubDate>
					<dc:creator>CharliePryor</dc:creator>

					<description>
						<![CDATA[
						<p>So, just to verify, the my_custom part of this, is actually the font awesome code correct? For example, &#8220;fa arrow circle up&#8221; is one of many icons there. If I wanted this, I would write it as follows?</p>
<p><code>&lt;i class=&quot;x-icon fa-arrow-circle-up&quot;&gt;&lt;/i&gt;</code><br />
Or would it be closer to this, using x-icon along with the fa bit as well?<br />
<code>&lt;i class=&quot;x-icon x-icon-fa-arrow-circle-up&quot;&gt;&lt;/i&gt;</code></p>
<p>Basically, I need a way for the client to see icons on that cheatsheet, and implement them on a page when he wants them as headings, or perhaps as bullet points (as he&#8217;s mentioned doing). It says X supports font awesome, but I cannot understand &#8220;how&#8221; it supports it, when entering the standard&lt;i class=&#8221;&#8221;&gt;&lt;/i&gt; doesn&#8217;t work ever&#8230;</p>
<p>Thanks for your time</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/font-awesome-integration/#post-209958</guid>
					<title><![CDATA[Reply To: Font Awesome Integration..]]></title>
					<link>https://theme.co/archive/forums/topic/font-awesome-integration/#post-209958</link>
					<pubDate>Thu, 19 Feb 2015 08:50:45 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hey Charlie,</p>
<p>I did some testing and this is the simplest way to do it. </p>
<p>In your child theme, edit your functions.php and add the following code:</p>
<pre><code>
add_action(&#039;wp_head&#039;, function(){ echo &#039;&lt;link href=&quot;//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css&quot; rel=&quot;stylesheet&quot; &gt;&#039;; }, 99999 );
</code></pre>
<p>Once you have that, try adding &lt;i class=&#8221;fa fa-arrow-circle-up&#8221;&gt;&lt;/i&gt; or &lt;i class=&#8221;fa fa-bed&#8221;&gt;&lt;/i&gt; and see if it works for you.</p>
<p>Hope this may help you </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/font-awesome-integration/#post-374017</guid>
					<title><![CDATA[Reply To: Font Awesome Integration..]]></title>
					<link>https://theme.co/archive/forums/topic/font-awesome-integration/#post-374017</link>
					<pubDate>Mon, 31 Aug 2015 05:27:42 +0000</pubDate>
					<dc:creator>Victor D</dc:creator>

					<description>
						<![CDATA[
						<p>Hello, With X 4.0.5, I can see in Chrome&#8217;s network tab that Font Awesome 4.3.0 is loading. However, using for instance &lt;i class=&#8221;fa fa-facebook&#8221;&gt;&lt;/i&gt; does not work.</p>
<p>If I add:</p>
<p>add_action(&#8216;wp_head&#8217;, function(){ echo &#8216;&lt;link href=&#8221;//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css&#8221; rel=&#8221;stylesheet&#8221; &gt;&#8217;; }, 99999 );</p>
<p>To functions.php, then it DOES work but it loads font-awesome TWICE. Any ideas on how to get this to work without the extra http request?</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/font-awesome-integration/#post-374020</guid>
					<title><![CDATA[Reply To: Font Awesome Integration..]]></title>
					<link>https://theme.co/archive/forums/topic/font-awesome-integration/#post-374020</link>
					<pubDate>Mon, 31 Aug 2015 05:31:40 +0000</pubDate>
					<dc:creator>Rupok</dc:creator>

					<description>
						<![CDATA[
						<p>Hi <a href="https://theme.co/archive/users/vdiaz-2/" class="bbp-user-mention bbp-user-id-2469"> @vdiaz-2</a></p>
<p>Thanks for updating! If the  Font Awesome 4.3.0 is loading loading properly then the icon should display and you don&#8217;t need to add it again. Would you please share your URL and login credentials in a private reply so that we can check the settings?</p>
<p>Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/font-awesome-integration/#post-374419</guid>
					<title><![CDATA[Reply To: Font Awesome Integration..]]></title>
					<link>https://theme.co/archive/forums/topic/font-awesome-integration/#post-374419</link>
					<pubDate>Mon, 31 Aug 2015 13:38:58 +0000</pubDate>
					<dc:creator>Victor D</dc:creator>

					<description>
						<![CDATA[
						<p>Currently the site is in development locally. However, inspecting things a bit closer I noticed that font-awesome is not loading twice, but rather the fonts are being loaded and the style sheet is being loaded.</p>
<p>font-awesome.min.css<br />
fontawesome-webfont.woff2?v=4.3.0</p>
<p>Adding add_action(&#8216;wp_head&#8217;, function(){ echo &#8216;&lt;link href=&#8221;//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css&#8221; rel=&#8221;stylesheet&#8221; &gt;&#8217;; }, 99999 ); pulls in the style sheet (.css) file above thus making it work. Without the line above, the css file is not loaded so the icon does not show up.</p>
<p>Thanks and sorry for the mix up.</p>
<p>Vic</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

