<?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>Custom Font &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/custom-font-2/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/custom-font-2/feed/</link>
		<description></description>
		<lastBuildDate>Sun, 12 Oct 2025 05:06:24 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/custom-font-2/#post-141920</guid>
					<title><![CDATA[Custom Font]]></title>
					<link>https://theme.co/archive/forums/topic/custom-font-2/#post-141920</link>
					<pubDate>Mon, 10 Nov 2014 17:58:33 +0000</pubDate>
					<dc:creator>caity721</dc:creator>

					<description>
						<![CDATA[
						<p>Hi! </p>
<p>I tried to upload two custom fonts via &#8220;Use Any Font&#8221; plugin that was explained in another forum post. However, &#8220;Use Any Font&#8221; will not work on my server. Is there any other way to upload a custom font into the customizer?</p>
<p>Thanks!<br />
Caity</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/custom-font-2/#post-142123</guid>
					<title><![CDATA[Reply To: Custom Font]]></title>
					<link>https://theme.co/archive/forums/topic/custom-font-2/#post-142123</link>
					<pubDate>Tue, 11 Nov 2014 00:31:50 +0000</pubDate>
					<dc:creator>Kosher K</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Caity,</p>
<p>Thanks for writing in,</p>
<p>Can you please provide additional details of your issue.</p>
<p>Are you trying to use google font or Typekit font? </p>
<p>Can you please provide more information of the things you have done and the error/issue you&#8217;ve encountered? </p>
<p>Also, please provide the URL of the other forum post you mentioned.</p>
<p>Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/custom-font-2/#post-142196</guid>
					<title><![CDATA[Reply To: Custom Font]]></title>
					<link>https://theme.co/archive/forums/topic/custom-font-2/#post-142196</link>
					<pubDate>Tue, 11 Nov 2014 03:32:47 +0000</pubDate>
					<dc:creator>caity721</dc:creator>

					<description>
						<![CDATA[
						<p>Hi!</p>
<p>OK so I was referring to this thread:<br />
<a href="https://theme.co/x/member/forums/topic/failed-to-load-my-own-custom-fonts/" rel="nofollow">https://theme.co/x/member/forums/topic/failed-to-load-my-own-custom-fonts/</a></p>
<p>I&#8217;m trying to add two new fonts that I downloaded that aren&#8217;t included in the google fonts under the customizer. I don&#8217;t have a typekit font, I just have font files. </p>
<p>Basically I&#8217;ve just tried to use the plugin &#8220;Use Any Font&#8221; and I contacted them and they said the plugin will not work on my server. </p>
<p>I&#8217;m up for any other solution. </p>
<p>Thanks!<br />
Caity</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/custom-font-2/#post-142444</guid>
					<title><![CDATA[Reply To: Custom Font]]></title>
					<link>https://theme.co/archive/forums/topic/custom-font-2/#post-142444</link>
					<pubDate>Tue, 11 Nov 2014 13:28:54 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Caity,</p>
<p>Thank you for posting by!</p>
<p>You can add custom fonts to your website using CSS3 @font-face rule. To do this, please review this article: <a href="http://css-tricks.com/snippets/css/using-font-face/" rel="nofollow">http://css-tricks.com/snippets/css/using-font-face/</a></p>
<p>Basically you need to add the following code in your child theme&#8217;s <strong>style.css</strong> file (if you haven&#8217;t installed a child theme, please visit <a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" rel="nofollow">this</a>):</p>
<pre><code>@font-face {
  font-family: &#039;MyWebFont&#039;;
  src: url(&#039;path-to-your-font-directory/font_name.eot&#039;);
  src: url(&#039;path-to-your-font-directory/font_name.eot?#iefix&#039;) format(&#039;embedded-opentype&#039;),
       url(&#039;path-to-your-font-directory/font_name.woff&#039;) format(&#039;woff&#039;),
       url(&#039;path-to-your-font-directory/font_name.ttf&#039;)  format(&#039;truetype&#039;),
       url(&#039;path-to-your-font-directory/font_name.svg#svgFontName&#039;) format(&#039;svg&#039;);
}
</code></pre>
<p>Replace <strong>MyWebFont</strong> with the name of your font, <strong>path-to-your-font-directory</strong> with your fonts directory URL (e.g, <a href="http://yourwebsite.com/fonts" rel="nofollow">http://yourwebsite.com/fonts</a>) and <strong>font_name</strong> with your font&#8217;s name. </p>
<p>Next, whenever you need to use this font, simply use &#8220;MyWebFont&#8221; (or your custom font name), e.g:</p>
<pre><code>body {
   font-family: &#039;MyWebFont&#039;, sans-serif;
}
</code></pre>
<p>Hope this helps. 🙂</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/custom-font-2/#post-143362</guid>
					<title><![CDATA[Reply To: Custom Font]]></title>
					<link>https://theme.co/archive/forums/topic/custom-font-2/#post-143362</link>
					<pubDate>Wed, 12 Nov 2014 15:06:12 +0000</pubDate>
					<dc:creator>caity721</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you!!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/custom-font-2/#post-143387</guid>
					<title><![CDATA[Reply To: Custom Font]]></title>
					<link>https://theme.co/archive/forums/topic/custom-font-2/#post-143387</link>
					<pubDate>Wed, 12 Nov 2014 15:40:09 +0000</pubDate>
					<dc:creator>caity721</dc:creator>

					<description>
						<![CDATA[
						<p>Is there a way to add the custom font to the customizer? I&#8217;d like to have all of the headers be the new font. Thanks!<br />
Caity</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/custom-font-2/#post-143694</guid>
					<title><![CDATA[Reply To: Custom Font]]></title>
					<link>https://theme.co/archive/forums/topic/custom-font-2/#post-143694</link>
					<pubDate>Wed, 12 Nov 2014 20:54:25 +0000</pubDate>
					<dc:creator>Darshana</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there, </p>
<p>You can manually override the custom font in any area using the Customizer, <strong>Custom &gt; CSS</strong> section. Follow the example below. </p>
<pre><code>
header .x-brand.text {
    font-family: &#039;MyWebFont&#039;, sans-serif;
}
</code></pre>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/custom-font-2/#post-144602</guid>
					<title><![CDATA[Reply To: Custom Font]]></title>
					<link>https://theme.co/archive/forums/topic/custom-font-2/#post-144602</link>
					<pubDate>Thu, 13 Nov 2014 20:42:52 +0000</pubDate>
					<dc:creator>caity721</dc:creator>

					<description>
						<![CDATA[
						<p>Hey!! So I went through everything diligently and it isn&#8217;t working 🙁</p>
<p>Any ideas?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/custom-font-2/#post-144981</guid>
					<title><![CDATA[Reply To: Custom Font]]></title>
					<link>https://theme.co/archive/forums/topic/custom-font-2/#post-144981</link>
					<pubDate>Fri, 14 Nov 2014 11:21:54 +0000</pubDate>
					<dc:creator>Rubin</dc:creator>

					<description>
						<![CDATA[
						<p>Hey There,</p>
<p>add an important tag to it:</p>
<pre><code>header .x-brand.text {
    font-family: &#039;MyWebFont&#039;, sans-serif !important;
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/custom-font-2/#post-145400</guid>
					<title><![CDATA[Reply To: Custom Font]]></title>
					<link>https://theme.co/archive/forums/topic/custom-font-2/#post-145400</link>
					<pubDate>Fri, 14 Nov 2014 22:57:52 +0000</pubDate>
					<dc:creator>caity721</dc:creator>

					<description>
						<![CDATA[
						<p>Hi!!</p>
<p>I&#8217;ve tried that and it still isn&#8217;t working. I&#8217;m adding the code but it still isn&#8217;t working 🙁</p>
<p>Any ideas? </p>
<p>Thank you!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

