<?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>Change header font size and colors; Overall modification best practices &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 11 Oct 2025 07:13:02 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-249840</guid>
					<title><![CDATA[Change header font size and colors; Overall modification best practices]]></title>
					<link>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-249840</link>
					<pubDate>Wed, 15 Apr 2015 02:47:32 +0000</pubDate>
					<dc:creator>jennyccc</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>I was wondering if you can help me with the following&#8230;</p>
<p>(1) How can I change the font size/color for all the different headers (for individual h1, h2, etc)?<br />
(2) Where can I find the original full detailed css and php files so I can modify based on that? Or more generally, can you please let me know how I can best modify different elements (any best practices)? </p>
<p>Ps. I&#8217;m currently using the child theme. </p>
<p>Thank you very much!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-250015</guid>
					<title><![CDATA[Reply To: Change header font size and colors; Overall modification best practices]]></title>
					<link>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-250015</link>
					<pubDate>Wed, 15 Apr 2015 08:45:19 +0000</pubDate>
					<dc:creator>John Ezra</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thanks for writing in! </p>
<p><strong>For #1</strong><br />
You can add this under <strong>Custom &gt; CSS</strong> in the <strong>Customizer</strong> or in your child theme&#8217;s <strong>style.css</strong> file.</p>
<pre><code>// Headings
// =============================================================================

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 1.25em 0 0.2em;
  font-family: $headingsFontFamily;
  font-weight: $headingsFontWeight;
  letter-spacing: -1px;
  text-rendering: optimizelegibility;  
  color: $headingsColor;

  small {
    font-weight: normal;
    line-height: 1;
    color: $grayLight;
  }

  a {
    color: $headingsColor;

    &amp;:hover {
      color: $accentColor;
    }
  }
}

h1,
.h1 {
  margin-top: 1em;
  font-size: 400%;
  line-height: 1.1;
}

h2,
.h2 {
  font-size: 285.7%;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: 228.5%;
  line-height: 1.3;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  margin-top: 1.75em;
  margin-bottom: 0.5em;
  line-height: 1.4;
}

h4,
.h4 {
  font-size: 171.4%;
}

h5,
.h5 {
  font-size: 150%;
}

h6,
.h6 {
  font-size: 100%;
  text-transform: uppercase;
}</code></pre>
<p>Note: the global heading colors can be edited in the customizer. <strong>Appearance &gt; Customize &gt; Typography &gt; Headings &gt; Headings Font Color &gt;&gt;</strong> Set to <strong>&#8220;On&#8221;</strong>, then select your color.</p>
<p>For individual, you can add the CSS rule color:#ffffff (change color value) to each &#8220;H&#8221; level from h1-h6.</p>
<p><strong>For #2</strong></p>
<p>It would be best that you try not to edit the original files. You can override them via style.css file in the child theme,<br />
Checking the original file won&#8217;t help much as it is minified for performance.</p>
<p>So it would be best to modify the above code and paste it into your style.css file (child theme).</p>
<p>Hope this helps – thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-250404</guid>
					<title><![CDATA[Reply To: Change header font size and colors; Overall modification best practices]]></title>
					<link>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-250404</link>
					<pubDate>Wed, 15 Apr 2015 17:13:30 +0000</pubDate>
					<dc:creator>jennyccc</dc:creator>

					<description>
						<![CDATA[
						<p>Super helpful! Thank you very much! 🙂 </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-250438</guid>
					<title><![CDATA[Reply To: Change header font size and colors; Overall modification best practices]]></title>
					<link>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-250438</link>
					<pubDate>Wed, 15 Apr 2015 17:43:49 +0000</pubDate>
					<dc:creator>Nico</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re most welcome.</p>
<p>Let us know if you need anything else.</p>
<p>Thanks. Have a great day! 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-600741</guid>
					<title><![CDATA[Reply To: Change header font size and colors; Overall modification best practices]]></title>
					<link>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-600741</link>
					<pubDate>Mon, 28 Sep 2015 03:05:17 +0000</pubDate>
					<dc:creator>rapsojo</dc:creator>

					<description>
						<![CDATA[
						<p>Hello, I am new to using cornerstone and I am trying to figure out how to change my heading sizes (H1, H2, H3) The heading sizes are too big and I want to reduce them. Do I need to do something like the above. I am hesitate about it, as it is a bit beyond my skill-set. Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-600801</guid>
					<title><![CDATA[Reply To: Change header font size and colors; Overall modification best practices]]></title>
					<link>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-600801</link>
					<pubDate>Mon, 28 Sep 2015 04:29:07 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Thanks for updating the thread! </p>
<p>To change your heading size, please add the following css code in the customizer, <strong>Appearance &gt; Customize &gt; Custom &gt; CSS</strong></p>
<pre><code>h1,
.h1 {
  font-size: 40px;
}

h2,
.h2 {
  font-size: 34px;
}

h3,
.h3 {
  font-size: 30px;
}

h4,
.h4 {
  font-size: 26px;
}

h5,
.h5 {
  font-size: 22px;
}

h6,
.h6 {
  font-size: 20px;
}</code></pre>
<p>Feel free to adjust the number of pixels for your preferred sizes.<br />
Hope this helps. Kindly let us know.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-649145</guid>
					<title><![CDATA[Reply To: Change header font size and colors; Overall modification best practices]]></title>
					<link>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-649145</link>
					<pubDate>Mon, 02 Nov 2015 12:06:29 +0000</pubDate>
					<dc:creator>JoeyHendrickson</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks for providing the CSS! I noticed the &#8220;icons&#8221; aren&#8217;t able to display in the featured header, after applying the code above. Just me, or is there a way to add this back into the css?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-649168</guid>
					<title><![CDATA[Reply To: Change header font size and colors; Overall modification best practices]]></title>
					<link>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-649168</link>
					<pubDate>Mon, 02 Nov 2015 12:22:50 +0000</pubDate>
					<dc:creator>Thai</dc:creator>

					<description>
						<![CDATA[
						<p>Hi <a href="https://theme.co/archive/users/joeyhendrickson/" class="bbp-user-mention bbp-user-id-57498"> @Joeyhendrickson</a>,</p>
<p>Would you mind providing us with your website URL so we can take a closer look?</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-746376</guid>
					<title><![CDATA[Reply To: Change header font size and colors; Overall modification best practices]]></title>
					<link>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-746376</link>
					<pubDate>Thu, 14 Jan 2016 20:42:12 +0000</pubDate>
					<dc:creator>swillcox1976</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-746386</guid>
					<title><![CDATA[Reply To: Change header font size and colors; Overall modification best practices]]></title>
					<link>https://theme.co/archive/forums/topic/change-header-font-size-and-colors-overall-modification-best-practices/#post-746386</link>
					<pubDate>Thu, 14 Jan 2016 20:46:56 +0000</pubDate>
					<dc:creator>swillcox1976</dc:creator>

					<description>
						<![CDATA[
						<p>*font </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

