<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Headway 101</title>
	<atom:link href="http://headway101.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://headway101.com</link>
	<description>The Unofficial Guide to Headway Themes</description>
	<lastBuildDate>Sun, 20 May 2012 02:17:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>HTML, CSS, and PHP Explained &#8211; An Introduction to Internet Coding Basics</title>
		<link>http://headway101.com/html-css-and-php-explained-an-introduction-to-internet-coding-basics/</link>
		<comments>http://headway101.com/html-css-and-php-explained-an-introduction-to-internet-coding-basics/#comments</comments>
		<pubDate>Mon, 14 May 2012 01:43:51 +0000</pubDate>
		<dc:creator>Corey Freeman</dc:creator>
				<category><![CDATA[Headway Basics]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://headway101.com/?p=879</guid>
		<description><![CDATA[While you can build a functional website without using code in Headway Themes, it&#8217;s helpful to know the basics when you start getting into intermediate customization. A lot of beginners to Headway are also beginners to how web code works, so in this tutorial we&#8217;re going to look at the three fundamental programming languages every [...]]]></description>
			<content:encoded><![CDATA[<p>While you can build a functional website without using code in Headway Themes, it&#8217;s helpful to know the basics when you start getting into intermediate customization.</p>
<p>A lot of beginners to Headway are also beginners to how web code works, so in this tutorial we&#8217;re going to look at the three fundamental programming languages every website owner should be able to recognize.</p>
<h2>What is  HTML?</h2>
<p>HTML (Hyper-Text Mark-Up Language) is the language that websites are rendered in. Basically, <strong>everything you and your readers see on the &#8220;front-end&#8221; is HTML.</strong> This language uses what&#8217;s called &#8220;tags&#8221; that you can wrap around different types of content to structure a layout. For example, this is how titles and subtitles look:</p>
<pre>&lt;h1&gt;I'm the Page Title!&lt;/h1&gt;
&lt;h2&gt;I'm a Subtitle!&lt;/h2&gt;
&lt;h3&gt;I'm a Section Title!&lt;/h3&gt;</pre>
<p>The above code uses &#8220;title tags&#8221; to designate that content as a title or subtitle. Another tag, &#8220;ul&#8221; generates an unordered list, and will display the content entered into it in a bullet vertical list. Like this:</p>
<pre>&lt;ul&gt;
&lt;li&gt;This is the first list item.&lt;/li&gt;
&lt;li&gt;This is the second list item.&lt;/li&gt;
&lt;li&gt;This is the third list item.&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>HTML can also be used to assign &#8220;IDs&#8221; and &#8220;Classes&#8221; to website content. Basically, you can attach a name to elements, that can be used later with other languages. For example, Headway adds the class &#8220;custom&#8221; to the body tag. It looks like this:</p>
<pre>&lt;body class="custom"&gt;</pre>
<p>A <strong>class</strong> is an identifier that can be used numerous times on the same page. An <strong>id</strong> should only be used once per page. For example, the &#8220;whitewrap&#8221; div tag that wraps around your entire Headway Themes site. It looks like this:</p>
<pre>&lt;div id="whitewrap"&gt;</pre>
<p>For the sake of beginners, let&#8217;s say that <strong>HTML is NOT a programming language. Incorrect HTML will not take down your entire website.</strong> Usually, broken HTML just results in a weird looking layout, and can be easily fixed with the rest of the website running.</p>
<p>When you see people in videos looking at source code in a browser, what they&#8217;re viewing is HTML. <strong>It&#8217;s used to structure the website and display all of the content</strong> like text, images, videos, etc. <a href="http://w3schools.com/html/html_intro.asp" target="_blank">Read more about it here.</a></p>
<h3>HTML You Need to Know</h3>
<p>There are three snippets (really two, and then combining them) that every internet user should know: how to make a hyperlink, how to display an image, and how to display a hyper-linked image. They look like this:</p>
<pre>&lt;a href="http://yoursite.com"&gt;This is Your Link Text&lt;/a&gt;
&lt;img src="http://yoursite.com/image.jpg" /&gt;
&lt;a href="http://yoursite.com"&gt;&lt;img src="http://yoursite.com/image.jpg" /&gt;&lt;/a&gt;</pre>
<h2>What is CSS?</h2>
<p>CSS (Cascading Style Sheets) is another mark-up language, similar to HTML. Instead of displaying the content, <strong>CSS styles the content.</strong> This can mean anything from text colors to background images and positioning elements within the layout.</p>
<p><strong>You have to think of CSS as a language, like English.</strong> As opposed to these &#8220;pre-set&#8221; styles, it&#8217;s more like decorating a room with paint, photos, furniture, etc. You have elements that can be applied to various places to create a look.</p>
<p>For example, we can use the background property to set a background image:</p>
<pre>body {background: blue;}</pre>
<p>CSS communicates with HTML by identifying HTML tags, like the body tag above. Here&#8217;s an example where we would style the color of a hyperlink:</p>
<pre>a {color: green;}</pre>
<p>The HTML tag for a hyperlink is &lt;a&gt;, so we use the same thing, without the arrows, in our CSS code. CSS can also pick up IDs and Classes to style specific elements. For example, the &#8220;custom&#8221; class associated with Headway&#8217;s body tag:</p>
<pre>body.custom {background: blue;}</pre>
<p>We can string tags along to target different elements on a web page. You&#8217;ve probably seen this when looking up code examples and snippets for Headway Themes. Let&#8217;s look at code that could be used to change the color of Headway&#8217;s blog post titles:</p>
<pre>body.custom .entry-title {color: red;}</pre>
<p>This code targets the body.custom element (the body tag with the class &#8220;custom&#8221;) and then goes one step further and finds the class of the titles (&#8220;entry-title&#8221;) that is within the body tag. Once it has the target, it sets the color to red.</p>
<h3>CSS You Need to Know</h3>
<p>In reality, you should try to learn CSS in its entirety. From personal experience, I can tell you that learning basic CSS should only take around 2 hours. From there on out, it&#8217;s about practicing using it. You can <a href="http://w3schools.com/css/css_intro.asp" target="_blank">learn CSS from W3Schools</a> and use it with Headway Themes in my <a href="http://headway101.com/classes/" target="_blank">CSS Intro Bundle</a>.</p>
<h2>What is PHP?</h2>
<p>PHP is a programming language that developers use to create, manage, display, and destroy information. WordPress is created using PHP. So is Headway Themes. Basically, <strong>PHP is the foundation of dynamic website management. </strong>Luckily, beginner users really only need to learn about functions.</p>
<p>Functions are mini-programs that can be used to do a number of things. When it comes to WordPress and Headway in general, we usually use functions to <a href="http://headway101.com/what-are-headway-hooks/" target="_blank">interact with hooks</a>. For example:</p>
<pre>function alert_message()  {?&gt; &lt;div id="alert"&gt;This is an alert!&lt;/div&gt; &lt;?php }

add_action('headway_body_open', 'alert_message');</pre>
<p>The above function would make the text &#8220;This is an alert!&#8221; appear at the top of a headway-powered website. First we create our own function, alert_message() and then we use a pre-defined function: add_action(). The add_action function is being used elsewhere to tell Headway to put additional content in different places. So add_action runs our own little mini program through it&#8217;s program and then Headway&#8217;s system spits it out.</p>
<p><strong>Incorrect PHP can take down your website.</strong> This is also a language that requires practice, but you should definitely have FTP access to your website in the event you write a wrong line of code and have to fix it without going through WordPress.</p>
<h3>PHP You Need to Know</h3>
<p>The only PHP you really need to know for Headway and WordPress is how hooks work. From there on out, it&#8217;s pretty much searching the internet for code snippets until you start figuring things out. PHP is like the engineering of the internet: anyone can make a box car, but you have to keep learning if you want something really awesome.</p>
<p>Check out the introduction to hooks post and <a href="http://w3schools.com/php/php_intro.asp" target="_blank">learn more about PHP basics from W3SChools.</a></p>
<h2>Where Can I Learn More?</h2>
<p>Google. Google and practice. I have no books, courses, or videos to recommend. I learned these languages by practicing with them. Modifying preexisting templates, trying to build your own code, making changes to your website, etc. Practice makes perfect! <img src='http://headway101.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://headway101.com/html-css-and-php-explained-an-introduction-to-internet-coding-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a Fluid Header and Fluid Footer in Headway (The Easy Way)</title>
		<link>http://headway101.com/how-to-create-a-fluid-header-and-fluid-footer-in-headway-the-easy-way/</link>
		<comments>http://headway101.com/how-to-create-a-fluid-header-and-fluid-footer-in-headway-the-easy-way/#comments</comments>
		<pubDate>Thu, 10 May 2012 00:01:38 +0000</pubDate>
		<dc:creator>Corey Freeman</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Developer Tutorials]]></category>

		<guid isPermaLink="false">http://headway101.com/?p=818</guid>
		<description><![CDATA[&#8220;Fluid&#8221; website elements are parts of a website that appear to expand from one edge of the browser to the other. For example, the blue area surrounding the Headway101.com logo. A literal crap-ton of people asked me to write out my method for creating fluid headers. I apparently have showcased this technique in videos and [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;Fluid&#8221; website elements are parts of a website that appear to expand from one edge of the browser to the other. For example, the blue area surrounding the Headway101.com logo.</p>
<p>A literal <em>crap-ton</em> of people asked me to write out my method for creating fluid headers. I apparently have showcased this technique in videos and on the forums, but never in a tutorial! So here&#8217;s how I do it.</p>
<h2>How to Create a Fluid Headway Header</h2>
<p>This part is all CSS, no hooks required. Basically, we&#8217;re going to make a background image act like the header for us. This is how it&#8217;s done on Headway101. First, <strong>create a background image that is the height of your header block. It can be any width, but smaller is better.</strong></p>
<p><strong></strong>Use the following CSS in either a child theme or the Live CSS editor:</p>
<pre>body.custom header, body.custom div#whitewrap {background: url(yoursite.com/header.jpg) repeat-x;}
body.custom div.wrapper {background: none; box-shadow: none;}</pre>
<p><strong>This sets the header and a &lt;div&gt; tag with the &#8220;ID&#8221; whitewrap to have a background image: </strong>your header background. Of course the header is permanently attached to the wrapper, so we have to make the whole thing transparent and get rid of the box shadow.</p>
<p>The best thing about this method is that <strong>you can still use a body background image.</strong></p>
<h3>Need Fluid Navigation Too?</h3>
<p>In order to make your navigation appear fluid, simply add the height of your navbar to the bottom of your header image, and stick its seamless background inside the image. Then, make the background of the navigation block transparent. Vwala!</p>
<h2>How to Create a Fluid Headway Footer</h2>
<p><strong>If you don&#8217;t have a fluid header, </strong>you can use this CSS code to apply the above trick to the footer.<strong> Create a footer image the height of your footer block</strong> with any width, and use the following code:</p>
<pre>body.custom footer, body.custom div#whitewrap {background: url(yoursite.com/header.jpg) bottom repeat-x;}
body.custom div.wrapper {background: none; box-shadow: none; margin-bottom: 0px;}</pre>
<h3>Need Both Elements Fluid?</h3>
<p><strong>If you&#8217;re using a fluid header,</strong> then the best way is to use PHP and some HTML to create our own footer. I&#8217;ve done this for multiple projects, including a client site I just worked on, <a href="http://worldstaxhavens.com/" target="_blank">Worlds Tax Havens</a>. You need to have a <a href="http://headway101.com/how-to-make-a-child-theme-for-headway-3-0/" target="_blank">child theme</a> installed first.</p>
<p><strong>Delete your footer block</strong>, and add the following to your child theme&#8217;s functions.php file:</p>
<pre>function custom_hw_footer() { ?&gt;
&lt;div id="footer-wrap"&gt;
&lt;footer id="footer"&gt;
&lt;p&gt;&lt;?="&amp;copy; ".date('Y')."&amp;nbsp;".get_bloginfo('name').". All Rights Reserved"; ?&gt;&lt;/p&gt;
&lt;/footer&gt;
&lt;/div&gt;
&lt;?php }
add_action('headway_after_wrapper', 'custom_hw_footer', 1);</pre>
<p>This PHP code basically says that after the wrapper, we want to add our own code for the footer, which is just a copyright message along with an updating year for the copyright date. Next, add the following code to your style.css file or the live css editor:</p>
<pre>body.custom div#footer-wrap {background: url(yoursite.com/footer.jpg); overflow: hidden;}
body.custom div#footer-wrap footer {width: 940px; margin: auto; }</pre>
<p>This CSS code makes the footer the width of your wrapper (change 940 to the width of your site) and gives it a background image that wraps from the left side of the screen to the right.</p>
<h3>Tip: Responsive Design</h3>
<p>I haven&#8217;t worked with responsive design much, but if you want the footer to resize itself alongside the rest of the responsive grid, <strong>change the width of the footer from a pixel value to a percentage between 1 and 100%.</strong> Mess with the number until it lines up correctly and you should be good to go.</p>
<h2>Enjoy Your Fluidity!</h2>
<p>This technique will end up making your content &#8220;float&#8221; and in that way, look fluid like the top and bottom portions of the website.</p>
]]></content:encoded>
			<wfw:commentRss>http://headway101.com/how-to-create-a-fluid-header-and-fluid-footer-in-headway-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>How to Add Google Fonts to Headway Child Themes</title>
		<link>http://headway101.com/how-to-add-google-fonts-to-headway-child-themes/</link>
		<comments>http://headway101.com/how-to-add-google-fonts-to-headway-child-themes/#comments</comments>
		<pubDate>Wed, 09 May 2012 23:30:37 +0000</pubDate>
		<dc:creator>Corey Freeman</dc:creator>
				<category><![CDATA[Code Snippets]]></category>

		<guid isPermaLink="false">http://headway101.com/?p=795</guid>
		<description><![CDATA[Google Fonts is Google&#8217;s library of fonts that you can use on your own website to create a more unique design. For users interested in developing child themes, custom fonts will definitely make your design stand out. If you want to use Google Fonts in your child themes instead of doing it the usual way, [...]]]></description>
			<content:encoded><![CDATA[<p>Google Fonts is Google&#8217;s library of fonts that you can use on your own website to create a more unique design. For users interested in developing child themes, custom fonts will definitely make your design stand out.</p>
<p>If you want to use <a href="http://www.google.com/webfonts#" target="_blank">Google Fonts</a> in your child themes instead of <a href="http://headway101.com/how-to-add-google-fonts-to-headway-themes-in-3-easy-steps/" target="_blank">doing it the usual way</a>, you can use a simple PHP function with Headway hooks to automatically insert the proper code for your fonts into the header.</p>
<h2>How to Add Google Fonts to Headway with PHP and Hooks</h2>
<p>In this example, we&#8217;ll be adding the <a href="http://www.google.com/webfonts#UsePlace:use/Collection:Oswald" target="_blank">Oswald font</a> to our child theme. Simply copy and paste the following code into your child theme&#8217;s functions.php file:</p>
<pre>

//Google Fonts
function google_fonts() {?&gt;
&lt;link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'&gt;
&lt;?php }
add_action('headway_head_extras', 'google_fonts');
</pre>
<p>After that, all you need to do is <strong>use the font-family property in your custom.css file</strong> to modify text. For example:</p>
<pre>body.custom .entry-title {font-family: 'Oswald', sans-serif;}</pre>
<p>See? Easy as pie! Now you can use Google fonts within your child themes to create a wider variety of looks. Don&#8217;t forget there&#8217;s also the font-face method of adding fonts for those not available from Google&#8217;s library.</p>
]]></content:encoded>
			<wfw:commentRss>http://headway101.com/how-to-add-google-fonts-to-headway-child-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Remove the Content Block Warning Message from the Visual Editor</title>
		<link>http://headway101.com/how-to-remove-the-content-block-warning-message-from-the-visual-editor/</link>
		<comments>http://headway101.com/how-to-remove-the-content-block-warning-message-from-the-visual-editor/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 19:33:24 +0000</pubDate>
		<dc:creator>Corey Freeman</dc:creator>
				<category><![CDATA[Code Snippets]]></category>

		<guid isPermaLink="false">http://headway101.com/?p=751</guid>
		<description><![CDATA[When working with the content block, Headway reminds you that the block won&#8217;t show the appropriate content for whatever page you happen to be on. It looks like this: Unfortunately, the warning box is rather large and makes accurate previews of your website even harder. So let&#8217;s get rid of it. Copy and paste the [...]]]></description>
			<content:encoded><![CDATA[<p>When working with the content block, Headway reminds you that the block won&#8217;t show the appropriate content for whatever page you happen to be on. It looks like this:</p>
<p><img class="aligncenter size-full wp-image-752" title="Screen Shot 2012-04-26 at 3.27.52 PM" src="http://headway101.com/wp-content/uploads/2012/04/Screen-Shot-2012-04-26-at-3.27.52-PM.png" alt="" width="580" height="403" /></p>
<p>Unfortunately, the warning box is rather large and makes accurate previews of your website even harder. So let&#8217;s get rid of it.</p>
<p><strong>Copy and paste the following CSS into the Live CSS Editor (or your child theme style.css file):</strong></p>
<pre>body.custom div.alert-yellow {display: none;}</pre>
<p>Poof! No more warning message for the user that already knows <img src='http://headway101.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://headway101.com/how-to-remove-the-content-block-warning-message-from-the-visual-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add Widgets to the Headway Footer Block</title>
		<link>http://headway101.com/how-to-add-widgets-to-the-headway-footer-block/</link>
		<comments>http://headway101.com/how-to-add-widgets-to-the-headway-footer-block/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 19:17:27 +0000</pubDate>
		<dc:creator>Corey Freeman</dc:creator>
				<category><![CDATA[Code Snippets]]></category>

		<guid isPermaLink="false">http://headway101.com/?p=745</guid>
		<description><![CDATA[A &#8220;widgetized footer&#8221; gives you the ability to add widgets to the bottom of your website, and automatically have them displayed on each page. Think of it as a horizontal widget area block, but you don&#8217;t have to keep adding it manually. Creating a globally widgetized footer that appears automatically on each page is actually [...]]]></description>
			<content:encoded><![CDATA[<p>A &#8220;widgetized footer&#8221; gives you the ability to add widgets to the bottom of your website, and automatically have them displayed on each page. Think of it as a horizontal widget area block, but you don&#8217;t have to keep adding it manually.</p>
<p>Creating a globally widgetized footer that appears automatically on each page is actually pretty easy. We just need to use headway&#8217;s hooks system. First, though, you need a child theme. <a href="http://headway101.com/how-to-make-a-child-theme-for-headway-3-0/" target="_blank">Learn how to create one</a> or <a href="http://headway101.com/child-themes/" target="_blank">download one from Headway101.</a></p>
<h2>Demo Video</h2>
<p><iframe src="http://www.youtube.com/embed/L-zM4le9Yzs" frameborder="0" width="580" height="325"></iframe></p>
<h2>How to Create a Widgetized Footer with Headway Themes</h2>
<p>The first thing we need to do is declare a widgetized area. This is done with the &#8220;register_sidebar&#8221; function from WordPress. <strong>Copy and paste the following code into your functions.php file:</strong></p>
<p><strong></strong>
<pre>//Define Widget Area
if (function_exists('register_sidebar'))
register_sidebar(array('name' =&gt; 'Footer-Widgets','before_widget' =&gt; '&lt;div class="footer-item"&gt;','after_widget' =&gt; '&lt;/div&gt;','before_title' =&gt; '&lt;h2&gt;','after_title' =&gt; '&lt;/h2&gt;'));</pre>
<p>Using this function, you can see that we&#8217;ve named our sidebar &#8220;Footer-Widgets,&#8221; and assigned some classes to the actual widgets and the title for styling purposes. Next we need to call out the widget area in the footer block.</p>
<p>Copy and paste the following code into your functions.php file, below the first bit of code:</p>
<pre>//Show Footer Widgets
function widgetized_footer() {
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer-Widgets') );
}
add_action('headway_footer_open', 'widgetized_footer');</pre>
<p>Here we&#8217;re using an action hook to stick our widget area into the footer block. <strong>We could easily swap &#8220;headway_footer_open&#8221; for &#8220;headway_wrapper_close&#8221; if you&#8217;re not using the footer block in your design.</strong></p>
<h3>Styling the Footer Widgets</h3>
<p>To get the footer widgets to line up horizontally, we just need one line of CSS code. <strong>Copy and paste the following CSS into your child theme&#8217;s style.css file or the Live CSS editor:</strong></p>
<pre>body.custom div.footer-item {float: left; display: inline; overflow: hidden; width: 30%; padding: 10px;}</pre>
<p>This code makes the widgets align to the left of the footer and then evenly sizes them to create 3-columns. You can mess with the width percentage and padding to add more columns if necessary.</p>
<h2>Any Questions?</h2>
<p>What questions do you have about creating a global widgetized footer in Headway?</p>
<p>Don&#8217;t forget that you can learn more about hooks from the <a href="http://headway101.com/classes/" target="_blank">Introduction to Headway Hooks &amp; PHP webinar!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://headway101.com/how-to-add-widgets-to-the-headway-footer-block/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>How to Add a &#8220;Hide Title on This Page&#8221; Button to Headway</title>
		<link>http://headway101.com/how-to-add-a-hide-title-on-this-page-button-to-headway/</link>
		<comments>http://headway101.com/how-to-add-a-hide-title-on-this-page-button-to-headway/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 19:06:30 +0000</pubDate>
		<dc:creator>Corey Freeman</dc:creator>
				<category><![CDATA[Code Snippets]]></category>

		<guid isPermaLink="false">http://headway101.com/?p=737</guid>
		<description><![CDATA[In version 2.0 of Headway Themes, you could hide a page&#8217;s title from within the WordPress dashboard, eliminating the need to go into the VE. 3.0 removes this feature, requiring users to setup a custom layout for a page that they might just want the page title gone from. That&#8217;s kind of annoying, so instead  [...]]]></description>
			<content:encoded><![CDATA[<p>In version 2.0 of Headway Themes, you could hide a page&#8217;s title from within the WordPress dashboard, eliminating the need to go into the VE. 3.0 removes this feature, requiring users to setup a custom layout for a page that they might just want the page title gone from.</p>
<p>That&#8217;s kind of annoying, so instead  You&#8217;ll need to have a child theme in able to do this. Download one or create your own.</p>
<h2>How to Create a &#8220;Hide Page Title&#8221; Button for Headway Themes</h2>
<p><a href="http://thcreations.com/" target="_blank">Randall R from T.H. Creations</a> was nice enough to supply the code. Simply <strong>copy and paste the following PHP code into your child theme&#8217;s functions.php file:</strong></p>
<pre>//Hide Page Title Button
add_action( 'add_meta_boxes', 'toggle_title_display_add_box' );
add_action( 'save_post', 'toggle_title_display_on_save' );
add_action( 'delete_post', 'toggle_title_display_on_delete' );
add_action( 'wp_head', 'toggle_title_wp_head' );
function toggle_title_wp_head(){
global $post;
$toggle = get_post_meta( $post-&gt;ID, 'toggle_title_display', true );
if( (bool) $toggle &amp;&amp; is_singular() ){
?&gt;
&lt;style type="text/css"&gt;.entry-title { display:none !important; }&lt;/style&gt;
&lt;?php
}
}
function toggle_title_display_add_box(){
$posttypes = array( 'post', 'page' );

foreach ( $posttypes as $posttype ){
add_meta_box( 'toggle_title_display', 'Hide Page Title', 'toggle_title_display_build_box', $posttype, 'side' );
}

}
function toggle_title_display_build_box( $post ){
$value =  get_post_meta( $post-&gt;ID, 'toggle_title_display', true );
$checked = '';

if( (bool) $value ){ $checked = ' checked="checked"'; }
wp_nonce_field( 'toggle_title_display_dononce', 'toggle_title_display_noncename' );
?&gt;
&lt;label&gt;&lt;input type="checkbox" name="toggle_title_display" &lt;?php echo $checked; ?&gt; /&gt; Hide the Title on This Page&lt;/label&gt;
&lt;?php
}
function toggle_title_display_on_save( $postID ){
if ( ( defined('DOING_AUTOSAVE') &amp;&amp; DOING_AUTOSAVE )
|| !isset( $_POST[ 'toggle_title_display_noncename' ] )
|| !isset( $_POST['toggle_title_display'] )
|| !wp_verify_nonce( $_POST[ 'toggle_title_display_noncename' ], 'toggle_title_display_dononce' ) ) {
return $postID;
}

$old = get_post_meta( $postID, 'toggle_title_display', true );
$new = $_POST['toggle_title_display'] ;

if( $old ){
if ( is_null( $new ) ){
delete_post_meta( $postID, 'toggle_title_display' );
} else {
update_post_meta( $postID, 'toggle_title_display', $new, $old );
}
} elseif ( !is_null( $new ) ){
add_post_meta( $postID, 'toggle_title_display', $new );
}
return $postID;
}
function toggle_title_display_on_delete( $postID ){
delete_post_meta( $postID, 'toggle_title_display' );
return $postID;
}</pre>
<p>This long piece of code creates a new meta box (a.k.a write panel) in the WordPress back end that allows for the removal of page and post titles using a simple checkbox that looks like this:</p>
<p><img class="aligncenter size-full wp-image-739" title="Screen Shot 2012-04-18 at 3.02.03 PM" src="http://headway101.com/wp-content/uploads/2012/04/Screen-Shot-2012-04-18-at-3.02.03-PM.png" alt="" width="299" height="80" /></p>
<p>That&#8217;s all you need to do, and then you&#8217;re free to hide titles without going through the VE!</p>
]]></content:encoded>
			<wfw:commentRss>http://headway101.com/how-to-add-a-hide-title-on-this-page-button-to-headway/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Add Google Fonts to Headway Themes in 3 Easy Steps</title>
		<link>http://headway101.com/how-to-add-google-fonts-to-headway-themes-in-3-easy-steps/</link>
		<comments>http://headway101.com/how-to-add-google-fonts-to-headway-themes-in-3-easy-steps/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 00:10:40 +0000</pubDate>
		<dc:creator>Corey Freeman</dc:creator>
				<category><![CDATA[Code Snippets]]></category>

		<guid isPermaLink="false">http://headway101.com/?p=729</guid>
		<description><![CDATA[Google Fonts is an open font library available from Google that lets you use any of their 501 fonts on your website. It&#8217;s easy to use Gfonts with Headway Themes in just a few easy steps: How to Add Google Fonts to Headway 3.0 Written Instructions The first thing you need to do is pick [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.com/webfonts#ChoosePlace:select" target="_blank">Google Fonts</a> is an open font library available from Google that lets you use any of their 501 fonts on your website.</p>
<p>It&#8217;s easy to use Gfonts with Headway Themes in just a few easy steps:</p>
<h2>How to Add Google Fonts to Headway 3.0</h2>
<p><iframe src="http://www.youtube.com/embed/heVEzkiQ6Ms" frameborder="0" width="580" height="325"></iframe></p>
<h3>Written Instructions</h3>
<ol>
<li>The first thing you need to do is <a href="http://www.google.com/webfonts#QuickUsePlace:quickUse/Family:" target="_blank">pick a font you like, and click the &#8220;quick-use&#8221; button</a>.</li>
<li>Copy the code in the blue text box into wp-admin&#8211;&gt;headway&#8211;&gt;options&#8211;&gt;scripts/analytics&#8211;&gt;header scripts.</li>
<li>Use the CSS Google provides to change any text on your website to the new font. For example:</li>
</ol>
<pre>body.custom .entry-title {font-family: 'Bad Script', cursive;}</pre>
<p><strong>NOTE: Fonts cannot be added to the Visual Editor in any way at this time.</strong></p>
<h2>Using Non-Google Fonts with Headway</h2>
<p>If you want to use other fonts, like one available from fontsquirrel.com or dafont.com, you need to <a href="http://headway101.com/how-to-use-font-face-to-add-any-font-to-your-website/" target="_blank">use the @font-face method</a>. It seems complicated, but you really just need to copy and paste where indicated.</p>
<h2>Any Questions?</h2>
<p>What questions do you have about using Google Fonts with Headway?</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://headway101.com/how-to-add-google-fonts-to-headway-themes-in-3-easy-steps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Change the Previous and Next Post Buttons in Headway Themes 3.0</title>
		<link>http://headway101.com/how-to-change-the-previous-and-next-post-buttons-in-headway-themes-3-0/</link>
		<comments>http://headway101.com/how-to-change-the-previous-and-next-post-buttons-in-headway-themes-3-0/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 15:31:47 +0000</pubDate>
		<dc:creator>Corey Freeman</dc:creator>
				<category><![CDATA[Code Snippets]]></category>

		<guid isPermaLink="false">http://headway101.com/?p=718</guid>
		<description><![CDATA[By default, there are two buttons at the bottoms of a post that lead you to the previous and next entries. The text that displays is the title of each post: If you have long post titles, this can become an annoying problem. However, we can change the text to just say &#8220;Previous Post&#8221; and [...]]]></description>
			<content:encoded><![CDATA[<p>By default, there are two buttons at the bottoms of a post that lead you to the previous and next entries. The text that displays is the title of each post:</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-719" title="Screen Shot 2012-04-15 at 11.33.23 AM" src="http://headway101.com/wp-content/uploads/2012/04/Screen-Shot-2012-04-15-at-11.33.23-AM.png" alt="" width="542" height="147" /></p>
<p>If you have long post titles, this can become an annoying problem. However, we can change the text to just say &#8220;Previous Post&#8221; and &#8220;Next Post&#8221; using some PHP in a child theme.</p>
<p>If you don&#8217;t have a child theme, you can download one or create your own.</p>
<p>How to Change the WordPress Post Navigation Buttons</p>
<p>Add the following code to your functions.php file:</p>
<pre>
// Change Post Buttons
function change_next_post($format, $link) {
return preg_replace('/\"&gt;(.*?)&lt;\/a&gt;/i', '"&gt;Next Post&lt;/a&gt;', $format);
}
function change_previous_post($format, $link) {
return preg_replace('/\"&gt;(.*?)&lt;\/a&gt;/i', '"&gt;Previous Post&lt;/a&gt;', $format);
}
add_filter('next_post_link', 'change_next_post', 12, 2);
add_filter('previous_post_link', 'change_previous_post', 12, 2);
</pre>
<h2>Any Questions?</h2>
<p>What questions do you have about changing the single post navigation?</p>
]]></content:encoded>
			<wfw:commentRss>http://headway101.com/how-to-change-the-previous-and-next-post-buttons-in-headway-themes-3-0/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>NEW! Deadline Premium Child Theme for Headway</title>
		<link>http://headway101.com/new-deadline-premium-child-theme-for-headway/</link>
		<comments>http://headway101.com/new-deadline-premium-child-theme-for-headway/#comments</comments>
		<pubDate>Sun, 15 Apr 2012 15:23:24 +0000</pubDate>
		<dc:creator>Corey Freeman</dc:creator>
				<category><![CDATA[Child Themes]]></category>

		<guid isPermaLink="false">http://headway101.com/?p=706</guid>
		<description><![CDATA[I&#8217;ve just finished Headway101&#8242;s first premium child theme! It&#8217;s called &#8220;Deadline.&#8221; This minimal, type-based design comes with seven color schemes: black, red, orange, yellow, green, blue, and purple, guaranteeing a match for just about anyone&#8217;s brand. Deadline also gives users the ability to add a menu to the footer using WordPress&#8217;s built in system. This [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just finished Headway101&#8242;s first premium child theme! It&#8217;s called &#8220;Deadline.&#8221;</p>
<p>This minimal, type-based design <strong>comes with seven color schemes: black, red, orange, yellow, green, blue, and purple</strong>, guaranteeing a match for just about anyone&#8217;s brand.</p>
<p>Deadline also gives users <strong>the ability to add a menu to the footer using WordPress&#8217;s built in system.</strong> This is  great for linking to terms of service, privacy policy, frequently asked questions, and other types of pages you may not want in your main navigation menu.</p>
<p>Finally, you can remove all of Headway&#8217;s footer links by just ticking a checkbox on the theme options page.</p>
<h2>Deadline Preview</h2>
<p><img class="aligncenter size-full wp-image-707" title="Screen Shot 2012-04-15 at 11.15.22 AM" src="http://headway101.com/wp-content/uploads/2012/04/Screen-Shot-2012-04-15-at-11.15.22-AM.png" alt="" width="580" height="409" /></p>
<p style="text-align: center;"><a href="http://themes.headway101.com/?wptheme=Deadline" target="_blank">(Live Preview)</a></p>
<h2>Purchase Deadline Theme</h2>
<p>Deadline is just $19.99, and comes with <strong>free updates for life.</strong> You can download it as many times as you want from the membership area on Headway101. Just click &#8220;Buy Now&#8221; to gain access instantly:</p>
<form action="http://headway101.com/dap/paypalCoupon.php" method="post" name="PaymentForm">
<input type="hidden" name="cmd" value="_xclick" />
<input type="hidden" name="currency_code" value="USD" />
<input type="hidden" name="item_name" value="Deadline Child Theme" />
<div style="text-align: center;">
<input type="image" name="submit" src="https://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" alt="Make payments with PayPal - its fast, free and secure!" /></div>
</form>
]]></content:encoded>
			<wfw:commentRss>http://headway101.com/new-deadline-premium-child-theme-for-headway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Use @Font-Face to Add Any Font to Your Website</title>
		<link>http://headway101.com/how-to-use-font-face-to-add-any-font-to-your-website/</link>
		<comments>http://headway101.com/how-to-use-font-face-to-add-any-font-to-your-website/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 02:26:25 +0000</pubDate>
		<dc:creator>Corey Freeman</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Developer Tutorials]]></category>

		<guid isPermaLink="false">http://headway101.com/?p=674</guid>
		<description><![CDATA[@Font-Face is a CSS3 property that allows you to add any font to your website without it needing to be installed on a user&#8217;s computer. It&#8217;s similar to Google Fonts, but without the library&#8217;s limitations. How to Use @Font-Face with Headway Themes Step One: Get Your Font Files The first thing you need to do [...]]]></description>
			<content:encoded><![CDATA[<p>@Font-Face is a CSS3 property that allows you to add any font to your website without it needing to be installed on a user&#8217;s computer. It&#8217;s similar to Google Fonts, but without the library&#8217;s limitations.</p>
<h2>How to Use @Font-Face with Headway Themes</h2>
<p><iframe src="http://www.youtube.com/embed/uB6egqbknCo" frameborder="0" width="580" height="325"></iframe></p>
<h3>Step One: Get Your Font Files</h3>
<p>The first thing you need to do is <strong>download your font, and then convert it into .TTF, .EOT, and .SVG files.</strong> You can find fonts for download on places like <a href="http://www.dafont.com" target="_blank">DaFont</a> or <a href="http://fontsquirrel.com" target="_blank">FontSquirrel.</a></p>
<p>You can use <a href="http://www.freefontconverter.com/" target="_blank">FreeFontConverter</a> to get .tff and .svg files, and <a href="http://www.kirsle.net/wizards/ttf2eot.cgi" target="_blank">TTF2EOT</a> to get your .eot file.</p>
<h3>Step Two: Upload Your Fonts to Your Child Theme</h3>
<p>You can technically upload fonts anywhere, but the easiest thing to do would be to <strong>upload all three font files into your child theme, in a folder called &#8220;fonts.&#8221; </strong>If you don&#8217;t have a child theme, <a href="http://headway101.com/how-to-make-a-child-theme-for-headway-3-0/" target="_blank">learn how to create one</a> or <a href="http://headway101.com/child-themes/" target="_blank">download one</a>.</p>
<p>Make sure that your fonts are all named the same thing. For example: blackboard.eot, blackboard.ttf, and blackboard.svg. This will make it easier in the code later.</p>
<h3>Step Three: Add the @Font-Face Code to Your Style.css File</h3>
<p>Add the following code to your style.css file, and change the URL and name of the font files to the appropriate ones for your website.</p>
<pre>@font-face {
font-family: 'yourfont';
src: url('fonts/yourfont.eot');
src: url('fonts/yourfont.eot?#iefix') format('embedded-opentype'),
url('fonts/yourfont.ttf') format('truetype'),
url('fonts/yourfont.svg#') format('svg');
}</pre>
<h3>Step Four: Use Your New Font</h3>
<p>You have to use CSS to use the new font, but you can use it just like any other web-safe font family. For example:</p>
<pre>body.custom .entry-title {font-family: 'myfont', arial;}</pre>
<h2>Any Questions?</h2>
<p>What questions do you have about using @font-face with Headway Themes?</p>
]]></content:encoded>
			<wfw:commentRss>http://headway101.com/how-to-use-font-face-to-add-any-font-to-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

