<?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>Changing font on buttons &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/changing-font-on-buttons/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/changing-font-on-buttons/feed/</link>
		<description></description>
		<lastBuildDate>Sun, 12 Oct 2025 13:19:37 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-291195</guid>
					<title><![CDATA[Changing font on buttons]]></title>
					<link>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-291195</link>
					<pubDate>Wed, 03 Jun 2015 17:05:56 +0000</pubDate>
					<dc:creator>Alex</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,</p>
<p>There&#8217;s no option to change the font for buttons via Customizer, is there? So can you give me a hint on how to do that?</p>
<p>Thanks!</p>
<p>&#8212;<br />
Alex</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-291743</guid>
					<title><![CDATA[Reply To: Changing font on buttons]]></title>
					<link>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-291743</link>
					<pubDate>Wed, 03 Jun 2015 22:41:27 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thanks for writing in.</p>
<p>Right, there is no option for button&#8217;s font in customizer. It simply inherit the font assigned on page&#8217;s body.</p>
<p>But, you can always apply another font style through custom css. Example, add this css at your customizer&#8217;s custom css.</p>
<pre><code>.x-btn {
font-family: Arial;
}</code></pre>
<p>That is as long as your preferred font is active or installed.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-292404</guid>
					<title><![CDATA[Reply To: Changing font on buttons]]></title>
					<link>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-292404</link>
					<pubDate>Thu, 04 Jun 2015 11:26:09 +0000</pubDate>
					<dc:creator>Alex</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,</p>
<p>Thanks!</p>
<p>But what if I want to use Google Font, on of predefined in your Customizer? I can easily select any font for headings and content, but what can I do with buttons labels?</p>
<p>Thanks!</p>
<p>&#8212;<br />
Alex</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-292950</guid>
					<title><![CDATA[Reply To: Changing font on buttons]]></title>
					<link>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-292950</link>
					<pubDate>Thu, 04 Jun 2015 23:08:51 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Alex,</p>
<p>That&#8217;s where you will need to apply your google font if not selected from customizer. Every google font has instruction for embedding their font. Example,</p>
<p>Go to google font and select your font, then get it&#8217;s embed code.</p>
<p><a href="https://www.google.com/fonts#UsePlace:use/Collection:Roboto" rel="nofollow">https://www.google.com/fonts#UsePlace:use/Collection:Roboto</a></p>
<p>There are four steps,</p>
<p>1. Choose font weight<br />
2. Choose the character set<br />
3. Get the embed code</p>
<p>Eg. <code>&lt;link href=&#039;http://fonts.googleapis.com/css?family=Roboto&#039; rel=&#039;stylesheet&#039; type=&#039;text/css&#039;&gt;</code></p>
<p>And you can add the embed code at X theme by adding this at your child theme&#8217;s functions.php</p>
<pre><code>add_filter(&#039;wp_head&#039;, &#039;google_font_roboto&#039;);

function google_font_roboto () { ?&gt;
&lt;link href=&#039;http://fonts.googleapis.com/css?family=Roboto&#039; rel=&#039;stylesheet&#039; type=&#039;text/css&#039;&gt;
&lt;?php }</code></pre>
<p>4. Apply the font style to your elements (eg. the button)</p>
<pre><code>.x-btn {
font-family: &#039;Roboto&#039;, sans-serif;
}</code></pre>
<p>Hope this helps 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-872222</guid>
					<title><![CDATA[Reply To: Changing font on buttons]]></title>
					<link>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-872222</link>
					<pubDate>Fri, 08 Apr 2016 02:56:54 +0000</pubDate>
					<dc:creator>allancaeg</dc:creator>

					<description>
						<![CDATA[
						<p>Feature request: please put the button font control on X-powered Customizer</p>
<p>The body font isn&#8217;t a very good reference for button font</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-872729</guid>
					<title><![CDATA[Reply To: Changing font on buttons]]></title>
					<link>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-872729</link>
					<pubDate>Fri, 08 Apr 2016 12:49:01 +0000</pubDate>
					<dc:creator>Zeshan</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Allan,</p>
<p>We certainly appreciate the feedback! This is something we can add to our list of feature requests. This way it can be taken into consideration for future development. All of these items are discussed with our team internally and prioritized based on the amount of interest a particular feature might receive. Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-912201</guid>
					<title><![CDATA[Reply To: Changing font on buttons]]></title>
					<link>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-912201</link>
					<pubDate>Wed, 04 May 2016 10:34:00 +0000</pubDate>
					<dc:creator>Alex</dc:creator>

					<description>
						<![CDATA[
						<p>I vote for this one too!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-912459</guid>
					<title><![CDATA[Reply To: Changing font on buttons]]></title>
					<link>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-912459</link>
					<pubDate>Wed, 04 May 2016 13:37:16 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Noted, thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-979203</guid>
					<title><![CDATA[Reply To: Changing font on buttons]]></title>
					<link>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-979203</link>
					<pubDate>Fri, 06 May 2016 19:46:29 +0000</pubDate>
					<dc:creator>seanmbc</dc:creator>

					<description>
						<![CDATA[
						<p>I vote for this too!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-979696</guid>
					<title><![CDATA[Reply To: Changing font on buttons]]></title>
					<link>https://theme.co/archive/forums/topic/changing-font-on-buttons/#post-979696</link>
					<pubDate>Sat, 07 May 2016 02:50:41 +0000</pubDate>
					<dc:creator>Prasant Rai</dc:creator>

					<description>
						<![CDATA[
						<p>We have taken your request. Thanks.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

