<?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>past episodes Archives &#8902; Schaffen Creative</title>
	<atom:link href="https://www.schaffencreative.com/category/past-episodes/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.schaffencreative.com/category/past-episodes/</link>
	<description>Make. Manage. Achieve.</description>
	<lastBuildDate>Tue, 06 Mar 2018 03:14:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.1</generator>

<image>
	<url>https://www.schaffencreative.com/wp-content/uploads/2018/02/schaffen_creative-500x500-100x100.png</url>
	<title>past episodes Archives &#8902; Schaffen Creative</title>
	<link>https://www.schaffencreative.com/category/past-episodes/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Eps 31: SASS MixIn &#8211; Talking HTML</title>
		<link>https://www.schaffencreative.com/past-episodes/eps-31-sass-mixin/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eps-31-sass-mixin</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Mon, 06 Mar 2017 16:46:48 +0000</pubDate>
				<category><![CDATA[past episodes]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[SASS]]></category>
		<guid isPermaLink="false">http://www.webdevpod.com/?p=328</guid>

					<description><![CDATA[<p>A mixin allows developers to create reusable CSS blocks. This helps avoiding writing repetitive code. Also allows to make quick changes without searching code for every instance. @mixin image-rotate { margin: 20px auto 0 auto; -moz-transition: all 0.8s ease-in-out; -webkit-transition: all 0.8s ease-in-out; -o-transition: all 0.8s ease-in-out; -ms-transition: all 0.8s ease-in-out; transition: all 0.8s ease-in-out; [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-31-sass-mixin/">Eps 31: SASS MixIn &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400;">A mixin allows developers to create reusable CSS blocks. This helps avoiding writing repetitive code. Also allows to make quick changes without searching code for every instance.</span></p>
<p><code><br />
@mixin image-rotate {<br />
margin: 20px auto 0 auto;<br />
-moz-transition: all 0.8s ease-in-out;<br />
-webkit-transition: all 0.8s ease-in-out;<br />
-o-transition: all 0.8s ease-in-out;<br />
-ms-transition: all 0.8s ease-in-out;<br />
transition: all 0.8s ease-in-out;<br />
}</code><br />
<code><br />
@mixin image-rotate-hover {<br />
-moz-transform: rotate(360deg);<br />
-webkit-transform: rotate(360deg);<br />
-o-transform: rotate(360deg);<br />
-ms-transform: rotate(360deg);<br />
transform: rotate(360deg);<br />
}</code><br />
<code><br />
img#norm {<br />
@include image-rotate;<br />
}</code><br />
<code><br />
img#norm:hover{<br />
@include image-rotate-hover;<br />
}</code></p>
<p><a href="https://www.sitepoint.com/sass-basics-the-mixin-directive/"><strong><span style="color: #ff0000;">Sitepoint example</span></strong></a></p>
<p><span style="font-weight: 400;">A mixin can take Sass data values as arguments. These values are specified when you define the mixin and given when you </span><span style="font-weight: 400;">@include</span><span style="font-weight: 400;"> the mixin. The arguments are then passed to the mixin as variables. Arguments are included in a comma separated list enclosed in parentheses after the mixin name.</span><br />
<code><br />
@mixin headline ($color, $size) {<br />
color: $color;<br />
font-size: $size;<br />
}</code><br />
<code><br />
h1 {<br />
@include headline(green, 12px);<br />
}</code><br />
<code><br />
h1 {<br />
color: green;<br />
font-size: 12px;<br />
}<br />
</code><br />
<code><br />
h2 {<br />
@include headline(red, 10px);<br />
}</code><br />
<code><br />
h2 {<br />
color: red;<br />
font-size: 10px;<br />
}<br />
</code><br />
<code><br />
@mixin border-radius($radius) {<br />
-webkit-border-radius: $radius;<br />
-moz-border-radius: $radius;<br />
-ms-border-radius: $radius;<br />
border-radius: $radius;<br />
}</code></p>
<p><span style="font-weight: 400;">Compiling program &amp; link (</span><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://koala-app.com/"><span style="font-weight: 400;">Koala</span></a></span><span style="font-weight: 400;">)</span></p>
<p><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.codecademy.com/learn/learn-sass"><span style="font-weight: 400;">Where to learn about SASS &#8211; </span></a><a style="color: #ff0000;" href="http://sass-lang.com/"><span style="font-weight: 400;">http://sass-lang.com/</span></a></span></p>
<p><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.codecademy.com/learn/learn-sass"><span style="font-weight: 400;">Codeacademy</span></a></span><span style="font-weight: 400;"> has a SASS class</span></p>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.twitter.com/tommnorman"><b>@tommnorman</b></a></span></h4>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.twitter.com/tnpwdesign"><b>@tnpwdesign</b></a></span></h4>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.tnpwdesign.com/"><b>TNPWDesign.com</b></a></span></h4>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.webdevpod.com/"><b>WebDevPod.com</b></a></span></h4>
<p>&nbsp;</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-31-sass-mixin/">Eps 31: SASS MixIn &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/Eps31_SASS_MixIn.mp3" length="21790763" type="audio/mpeg" />

			</item>
		<item>
		<title>Eps 30: SASS Basics &#8211; Talking HTML</title>
		<link>https://www.schaffencreative.com/past-episodes/eps-30-sass-basics/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eps-30-sass-basics</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Tue, 28 Feb 2017 22:45:09 +0000</pubDate>
				<category><![CDATA[past episodes]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[SASS]]></category>
		<guid isPermaLink="false">http://www.webdevpod.com/?p=298</guid>

					<description><![CDATA[<p>What is SASS? Considered an extension of CSS. I consider it a streamlined version of CSS. How it works Set up on your personal system &#8211; I use Koala to compile my code Done locally then uploaded to the server via Filezilla Create a .SCSS file Write ANY CSS code as you normally would Add [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-30-sass-basics/">Eps 30: SASS Basics &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>What is SASS?</h2>
<p>Considered an extension of CSS. I consider it a streamlined version of CSS.</p>
<h2>How it works</h2>
<ul>
<li>Set up on your personal system &#8211; I use Koala to compile my code
<ul>
<li>Done locally then uploaded to the server via Filezilla</li>
</ul>
</li>
<li>Create a .SCSS file</li>
<li>Write ANY CSS code as you normally would</li>
<li>Add the SASS styling code as you see fit
<ul>
<li>variables</li>
<li>mixins</li>
<li>Code Nesting
<ul>
<li>Putting code inside of code</li>
</ul>
</li>
<li>imports
<ul>
<li>Get into it in a future eps</li>
</ul>
</li>
</ul>
</li>
<li>Save file</li>
<li>Compile code
<ul>
<li>may do so automatically once SCSS file is saved.</li>
<li>Compiling transforms your SCSS file into a CSS file</li>
</ul>
</li>
</ul>
<h2>Benefits</h2>
<ul>
<li>Streamline CSS writing &#8211; The one change will be distributed accross to all the corresponding instances of whatever it is you changed.</li>
</ul>
<h2>Negatives</h2>
<ul>
<li>You have to learn how to use SASS</li>
<li>You have to figure out how to get it to work on your computer, which can be a feat if you aren&#8217;t Computer savvy</li>
</ul>
<h2>Variables</h2>
<ul>
<li>Not usable in standard CSS</li>
<li>SASS integrates a way to create variables which then translates to regular CSS when compiled</li>
</ul>
<p><code><br />
$primary-color: #113e6d; /* BREWER BLUE */<br />
$secondary-color: #c1c4c4; /* COWBOY GRAY */<br />
$tertiary-color: #ffbf00; /* PACKER GOLD */<br />
$quaternary-color: #294239; /* PACKER GREEN */<br />
$quinary-color: #b70101; /* BADGER RED */<br />
$font-stack1: 'Merienda One', cursive;<br />
$font-stack2: 'Kite One', sans-serif;<br />
$font-stack3: 'Sintony', sans-serif;</code></p>
<p>body {<br />
background-color: $primary-color;<br />
font-family: $font-stack3;<br />
font-size: 62.5%;<br />
}</p>
<p>#center {<br />
margin: 0 auto;<br />
background-color: $secondary-color;<br />
width: 800px;<br />
}</p>
<p>Compiling program &amp; link (<span style="color: #ff0000;"><a style="color: #ff0000;" href="http://koala-app.com/">Koala</a></span>)</p>
<p><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.codecademy.com/learn/learn-sass">Where to learn about SASS &#8211; </a><a style="color: #ff0000;" href="http://sass-lang.com/">http://sass-lang.com/</a></span></p>
<p><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.codecademy.com/learn/learn-sass">Codeacademy</a></span> has a class</p>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.twitter.com/tommnorman">@tommnorman</a></span></h4>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.twitter.com/tnpwdesign">@tnpwdesign</a></span></h4>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.tnpwdesign.com">TNPWDesign.com</a></span></h4>
<h4><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.webdevpod.com">WebDevPod.com</a></span></h4>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-30-sass-basics/">Eps 30: SASS Basics &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/Eps30_SASS.mp3" length="18360154" type="audio/mpeg" />

			</item>
		<item>
		<title>Eps 29: Back to Basics &#8211; Talking HTML</title>
		<link>https://www.schaffencreative.com/past-episodes/eps-29-back-basics/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eps-29-back-basics</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Mon, 20 Feb 2017 11:30:17 +0000</pubDate>
				<category><![CDATA[past episodes]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[workflow]]></category>
		<guid isPermaLink="false">http://www.webdevpod.com/?p=300</guid>

					<description><![CDATA[<p>Check your workflow Review EVERYTHING. Look at where you work Desk setup Are you in an external office or do you sit in your living room at home Do you need to find a new spot What are you sitting in Type of chair matters How many monitors are you using Do you need a [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-29-back-basics/">Eps 29: Back to Basics &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h1><span style="font-weight: 400; color: #000000;">Check your workflow</span></h1>
<h2><span style="font-weight: 400; color: #000000;">Review EVERYTHING.</span></h2>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Look at where you work</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Desk setup</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Are you in an external office or do you sit in your living room at home</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Do you need to find a new spot</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">What are you sitting in</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Type of chair matters</span></li>
</ul>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">How many monitors are you using</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Do you need a new one?</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Do you need to add another?</span></li>
</ul>
</li>
</ul>
</li>
</ul>
<p><span style="font-weight: 400; color: #000000;">You can’t be productive if you are distracted or uncomfortable</span></p>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">How do you work</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">What is your text editor of choice</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Does it access FTP?</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Do you work off of your local machine and upload via an FTP client like Filezilla?</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">How often are you checking your results. </span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Upload changes often and make minor tweaks along the way vs doing giant loads of work and fine tuning later</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">How much time do you waste sweating the small problems vs waiting until the end of the day &#8211; or even the project &#8211; to move pixels</span></li>
</ul>
</li>
</ul>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Are you taking time to update your software?</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Very important, especially if you are using wordpress</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Checking for theme and plugin updates can be the difference between a hacked site and a site that loads quickly and efficiently</span></li>
</ul>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Biggest question</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">ARE YOU USING YOUR TIME WELL</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Biggest distractions:</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">In home</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Kids</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Pets</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Technology</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Tv or phone</span></li>
</ul>
</li>
</ul>
</li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Office setting</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Co-workers</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Technology</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Disorganized business</span>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Random meetings</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Too much watercooler talk</span></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h2><span style="font-weight: 400; color: #000000;">How do you fix the issues</span></h2>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Force yourself to take time &#8211; maybe 5 minutes a day &#8211; to organize your desk, clean up your computer desktop, reorganize files and folders</span></li>
</ul>
<p><span style="font-weight: 400; color: #000000;">On top of basic housekeeping ask yourself this: Can I improve myself</span></p>
<ul>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Are you keeping up on current topics in design and development</span></li>
<li style="font-weight: 400;"><span style="font-weight: 400; color: #000000;">Are you trying new resources</span></li>
</ul>
<h3><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.twitter.com/tommnorman">@tommnorman</a></span></h3>
<h3><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.twitter.com/tnpwdesign">@tnpwdesign</a></span></h3>
<h3><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.tnpwdesign.com">TNPWDesign.com</a></span></h3>
<h3><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.webdevpod.com">WebDevPod.com</a></span></h3>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-29-back-basics/">Eps 29: Back to Basics &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/Eps29_BackToBasics.mp3" length="18883857" type="audio/mpeg" />

			</item>
		<item>
		<title>The Update Episode &#8211; Talking HTML</title>
		<link>https://www.schaffencreative.com/past-episodes/the-update-episode/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-update-episode</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Mon, 30 Jan 2017 03:39:30 +0000</pubDate>
				<category><![CDATA[past episodes]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<guid isPermaLink="false">http://www.webdevpod.com/?p=296</guid>

					<description><![CDATA[<p>This episode is being used as an update to what is to come in the near future.SASS, Bootstrap and JavaScript for starters. Also a giant thank you to everyone who has downloaded, listened or rated this podcast. I have read the comments and I appreciate the nice words. Come back again for more episodes coming [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/the-update-episode/">The Update Episode &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This episode is being used as an update to what is to come in the near future.SASS, Bootstrap and JavaScript for starters.</p>
<p>Also a giant thank you to everyone who has downloaded, listened or rated this podcast. I have read the comments and I appreciate the nice words. Come back again for more episodes coming soon.</p>
<h3><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.twitter.com/tommnorman">@tommnorman</a></span></h3>
<h3><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.twitter.com/tnpwdesign">@tnpwdesign</a></span></h3>
<h3><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.tnpwdesign.com">TNPWDesign.com</a></span></h3>
<h3><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.webdevpod.com">WebDevPod.com</a></span></h3>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/the-update-episode/">The Update Episode &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/TheUpdateEpisode.mp3" length="4051372" type="audio/mpeg" />

			</item>
		<item>
		<title>CSS Float &#8211; Talking HTML</title>
		<link>https://www.schaffencreative.com/past-episodes/float/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=float</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Thu, 03 Mar 2016 22:50:45 +0000</pubDate>
				<category><![CDATA[past episodes]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[float]]></category>
		<category><![CDATA[html]]></category>
		<guid isPermaLink="false">http://www.webdevpod.com/?p=287</guid>

					<description><![CDATA[<p>A float allows an element to be moved/placed on the webpage Float event: elements are removed from the flow of the website. Will cause issues with non floated elements. Use: Float: left, right, none Clear: left, right, both ORDER MATTERS!!! Items in the first position will be placed first. Go to itunes, stitcher, or wherever [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/float/">CSS Float &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="color: #000000;">A float allows an element to be moved/placed on the webpage</span></p>
<h2>Float event:</h2>
<p><span style="color: #000000;">elements are removed from the flow of the website. Will cause issues with non floated elements.</span></p>
<h2>Use:</h2>
<p><span style="color: #000000;">Float: left, right, none</span></p>
<p><span style="color: #000000;">Clear: left, right, both</span></p>
<p><span style="color: #000000;">ORDER MATTERS!!!</span></p>
<p><span style="color: #000000;">Items in the first position will be placed first.</span></p>
<p><span style="color: #000000;">Go to itunes, stitcher, or wherever you get your podcasts and leave the show a rating and a comment. Ratings get listeners! If you don&#8217;t leave a rating/comment then please tell a friend.</span></p>
<p><span style="color: #000000;">@tommnorman</span></p>
<p><span style="color: #000000;">@TNPWDesign</span></p>
<h3><span style="color: #000000;">Link to the Youtube video: <span style="color: #ff0000;"><a href="https://youtu.be/vD3hA5xh7lA" target="_blank">https://youtu.be/vD3hA5xh7lA</a></span></span></h3>
<h2><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://webdevpod.com" target="_blank">webdevpod.com</a></span></h2>
<p><span style="color: #000000;">CODE</span></p>
<p><span style="color: #000000;">body {</span><br />
<span style="color: #000000;">    Width: 980px;</span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">#box1 {</span><br />
<span style="color: #000000;">    height: 400px;</span><br />
<span style="color: #000000;">    width: 300px;</span><br />
<span style="color: #000000;">    margin: 10px;    </span><br />
<span style="color: #000000;">    background: #000;</span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">#box2 {</span><br />
<span style="color: #000000;">    height: 300px;</span><br />
<span style="color: #000000;">    width: 300px;    </span><br />
<span style="color: #000000;">    margin: 10px;</span><br />
<span style="color: #000000;">    background: #F00;</span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">#box3 {</span><br />
<span style="color: #000000;">    height: 200px;</span><br />
<span style="color: #000000;">    width: 300px;    </span><br />
<span style="color: #000000;">    margin: 10px;</span><br />
<span style="color: #000000;">    background: #0F0;</span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">footer {</span><br />
<span style="color: #000000;">    height: 200px;</span><br />
<span style="color: #000000;">    width: 300px;</span><br />
<span style="color: #000000;">    margin: 10px;    </span><br />
<span style="color: #000000;">    background: #00F; </span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">&lt;div id=&#8221;box1&#8243; class=&#8221;box&#8221;&gt;&lt;/div&gt;</span><br />
<span style="color: #000000;">&lt;div id=&#8221;box2&#8243; class=&#8221;box&#8221;&gt;&lt;/div&gt;</span><br />
<span style="color: #000000;">&lt;div id=&#8221;box3&#8243; class=&#8221;box&#8221;&gt;&lt;/div&gt;</span><br />
<span style="color: #000000;">&lt;footer&gt;&lt;/footer&gt;</span></p>
<p>&nbsp;</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/float/">CSS Float &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/CSSFloat.mp3" length="13426982" type="audio/mpeg" />

			</item>
		<item>
		<title>Material Design: Expanding Circle &#8211; Talking HTML</title>
		<link>https://www.schaffencreative.com/past-episodes/material-design-expanding-circle/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=material-design-expanding-circle</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Wed, 24 Feb 2016 22:36:32 +0000</pubDate>
				<category><![CDATA[past episodes]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[material design]]></category>
		<guid isPermaLink="false">http://www.webdevpod.com/?p=285</guid>

					<description><![CDATA[<p>A very basic tutorial on how to build a Material Design expanding circle as seen on Google products. Smashing Magazine Transition article Material Design Instructions https://design.google.com/ HTML &#60;div class=&#8221;container_circle&#8221;&#62; &#60;div class=&#8221;circle circle1&#8243;&#62; &#60;!&#8211; &#60;img src=&#8221;YOUR-URL-IMAGE.png&#8221;&#62; &#8211;&#62; &#60;p&#62;+&#60;/p&#62; &#60;/div&#62; &#60;div class=&#8221;circle circle2&#8243;&#62;&#60;p&#62;&#60;a href=&#8221;&#8221;&#62;t&#60;/a&#62;&#60;/p&#62;&#60;/div&#62; &#60;div class=&#8221;circle circle3&#8243;&#62;&#60;p&#62;&#60;a href=&#8221;&#8221;&#62;f&#60;/a&#62;&#60;/p&#62;&#60;/div&#62; &#60;div class=&#8221;circle circle4&#8243;&#62;&#60;p&#62;&#60;a href=&#8221;&#8221;&#62;g+&#60;/a&#62;&#60;/p&#62;&#60;/div&#62; &#60;/div&#62; CSS .circle { width:60px; [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/material-design-expanding-circle/">Material Design: Expanding Circle &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="color: #000000;">A very basic tutorial on how to build a Material Design expanding circle as seen on Google products.</span></p>
<h3><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.smashingmagazine.com/2013/04/css3-transitions-thank-god-specification/?utm_source=html5weekly&amp;utm_medium=email" target="_blank">Smashing Magazine Transition article</a></span></h3>
<h3><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://www.google.com/design/spec/material-design/introduction.html" target="_blank">Material Design Instructions</a></span></h3>
<h3><span style="color: #ff0000;"><a style="color: #ff0000;" href="https://design.google.com/" target="_blank">https://design.google.com/</a></span></h3>
<h2><span style="color: #000000;">HTML</span></h2>
<p><span style="color: #000000;">&lt;div class=&#8221;container_circle&#8221;&gt;</span><br />
<span style="color: #000000;"> &lt;div class=&#8221;circle circle1&#8243;&gt;</span><br />
<span style="color: #000000;"> &lt;!&#8211; &lt;img src=&#8221;YOUR-URL-IMAGE.png&#8221;&gt; &#8211;&gt;</span><br />
<span style="color: #000000;"> &lt;p&gt;+&lt;/p&gt;</span><br />
<span style="color: #000000;"> &lt;/div&gt;</span><br />
<span style="color: #000000;"> &lt;div class=&#8221;circle circle2&#8243;&gt;&lt;p&gt;&lt;a href=&#8221;&#8221;&gt;t&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</span><br />
<span style="color: #000000;"> &lt;div class=&#8221;circle circle3&#8243;&gt;&lt;p&gt;&lt;a href=&#8221;&#8221;&gt;f&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</span><br />
<span style="color: #000000;"> &lt;div class=&#8221;circle circle4&#8243;&gt;&lt;p&gt;&lt;a href=&#8221;&#8221;&gt;g+&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</span><br />
<span style="color: #000000;"> &lt;/div&gt;</span></p>
<h2><span style="color: #000000;">CSS</span></h2>
<p><span style="color: #000000;">.circle</span><br />
<span style="color: #000000;">{</span><br />
<span style="color: #000000;"> width:60px;</span><br />
<span style="color: #000000;"> height:60px;</span><br />
<span style="color: #000000;"> box-shadow: 3px 3px 6px #333333; </span><br />
<span style="color: #000000;"> border-radius:50%;</span><br />
<span style="color: #000000;"> position: fixed;</span><br />
<span style="color: #000000;"> bottom: 10px;</span><br />
<span style="color: #000000;"> right: 10px;</span><br />
<span style="color: #000000;"> -webkit-transition:all 0.2s linear;</span><br />
<span style="color: #000000;"> -moz-transition:all 0.2s linear;</span><br />
<span style="color: #000000;"> -ms-transition:all 0.2s linear;</span><br />
<span style="color: #000000;"> transition:all 0.2s linear;</span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">.circle p {</span><br />
<span style="color: #000000;"> margin: 0;</span><br />
<span style="color: #000000;"> padding: 0;</span><br />
<span style="color: #000000;"> font-size: 40px;</span><br />
<span style="color: #000000;"> font-weight: bold;</span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">.circle1</span><br />
<span style="color: #000000;">{</span><br />
<span style="color: #000000;"> background-color:#db4531;</span><br />
<span style="color: #000000;"> z-index: 4;</span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">.circle2</span><br />
<span style="color: #000000;">{</span><br />
<span style="color: #000000;"> background: #00aced;</span><br />
<span style="color: #000000;"> z-index: 3;</span><br />
<span style="color: #000000;"> &lt;!&#8211; background-image: url(YOUR-URL-IMAGE.png); &#8211;&gt;</span><br />
<span style="color: #000000;"> background-size:cover;</span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">.circle3</span><br />
<span style="color: #000000;">{</span><br />
<span style="color: #000000;"> background: #3b5998;</span><br />
<span style="color: #000000;"> z-index: 2;</span><br />
<span style="color: #000000;">&lt;!&#8211; background-image: url(YOUR-URL-IMAGE.png); &#8211;&gt;</span><br />
<span style="color: #000000;"> background-size:cover;</span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">.circle4</span><br />
<span style="color: #000000;">{</span><br />
<span style="color: #000000;"> background: #dd4b39;</span><br />
<span style="color: #000000;"> z-index: 1;</span><br />
<span style="color: #000000;">&lt;!&#8211; background-image: url(YOUR-URL-IMAGE.png); &#8211;&gt;</span><br />
<span style="color: #000000;"> background-size:cover;</span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">.container_circle:hover .circle2</span><br />
<span style="color: #000000;">{</span><br />
<span style="color: #000000;"> bottom:75px;</span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">.container_circle:hover .circle3</span><br />
<span style="color: #000000;">{</span><br />
<span style="color: #000000;"> bottom:140px;</span><br />
<span style="color: #000000;">}</span></p>
<p><span style="color: #000000;">.container_circle:hover .circle4</span><br />
<span style="color: #000000;">{</span><br />
<span style="color: #000000;"> bottom:205px;</span><br />
<span style="color: #000000;">}</span></p>
<p>&nbsp;</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/material-design-expanding-circle/">Material Design: Expanding Circle &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/MaterialDesign_ExpandingCircle.mp3" length="17523400" type="audio/mpeg" />

			</item>
		<item>
		<title>PHP Includes &#8211; Talking HTML</title>
		<link>https://www.schaffencreative.com/past-episodes/php-includes/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-includes</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Wed, 17 Feb 2016 22:33:45 +0000</pubDate>
				<category><![CDATA[past episodes]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[includes]]></category>
		<category><![CDATA[php]]></category>
		<guid isPermaLink="false">http://www.webdevpod.com/?p=279</guid>

					<description><![CDATA[<p>PHP includes are a vital aspect of websites and should be incorporated into every Web Developer&#8217;s workflow. Code via Chris Coyier and the CSS Tricks website    Main reason for using a PHP include: All code for a specific function is under 1 roof. If you need to make a change you change it in 1 [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/php-includes/">PHP Includes &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="color: #000000;">PHP includes are a vital aspect of websites and should be incorporated into every Web Developer&#8217;s workflow. </span></p>
<h2></h2>
<h2><span style="color: #000000;">Code via <span style="color: #ff0000;"><a style="color: #ff0000;" href="https://twitter.com/chriscoyier">Chris Coyier</a></span> and the <span style="color: #ff0000;"><a style="color: #ff0000;" href="https://css-tricks.com/php-include-from-root/">CSS Tricks website</a></span>   </span></h2>
<h2><span style="color: #000000;">Main reason for using a PHP include:</span></h2>
<ol>
<li><span style="color: #000000;"> All code for a specific function is under 1 roof.</span>
<ol>
<li><span style="color: #000000;">If you need to make a change you change it in 1 spot instead of going to each and every individual page</span></li>
</ol>
</li>
</ol>
<p><span style="color: #000000;">When using and creating includes the files need to have the php extension on the file. </span></p>
<p><span style="color: #000000;">Index.html turns into index.php  </span></p>
<h2><span style="color: #000000;">Popular includes to create:</span></h2>
<p><span style="color: #000000;">Footer.php</span><br />
<span style="color: #000000;">Header.php</span><br />
<span style="color: #000000;">Navigation.php </span></p>
<h3><span style="color: #000000;">Other examples:</span></h3>
<p><span style="color: #000000;">Meta data/ stylesheets/ head information</span><br />
<span style="color: #000000;">Social media</span><br />
<span style="color: #000000;">Separate website tracking code if you don’t/can’t include it in the footer.  </span></p>
<h2><span style="color: #000000;">General include statement: </span></h2>
<p><span style="color: #000000;">&lt;?php include(&#8220;header.php&#8221;); ?&gt;</span></p>
<h2><span style="color: #000000;">PHP include statement from root.</span></h2>
<p><span style="color: #000000;">&lt;?php</span><br />
<span style="color: #000000;"> $path = $_SERVER[&#8216;DOCUMENT_ROOT&#8217;];</span><br />
<span style="color: #000000;"> $path .= &#8220;/common/header.php&#8221;;</span><br />
<span style="color: #000000;"> include_once($path);</span><br />
<span style="color: #000000;"> ?&gt;</span></p>
<p><span style="color: #000000;">DISCLAIMER: when using PHP includes you HAVE TO ensure ALL OF YOUR LINKS are sourced from the root.</span></p>
<ul>
<li><span style="color: #000000;">All internal navigation</span></li>
<li><span style="color: #000000;">Direct links from 1 page to another that is not in the navigation</span></li>
<li><span style="color: #000000;">Image file locations</span></li>
</ul>
<p><span style="color: #000000;">Generally speaking this is something to get into the habit of doing anyway, that way if you move something you don’t have to remember to fix the link. Also I do believe that this is a general web standard.</span></p>
<h3><span style="color: #ff0000;"><a style="color: #ff0000;" href="http://www.webdevpod.com">webdevpod.com</a></span></h3>
<h3><span style="color: #ff0000;">@tommnorman</span></h3>
<h3><span style="color: #ff0000;">@TNPWDesign</span></h3>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/php-includes/">PHP Includes &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/PHP_Includes.mp3" length="15290244" type="audio/mpeg" />

			</item>
		<item>
		<title>Eps 25: CSS Backgrounds &#8211; Talking HTML</title>
		<link>https://www.schaffencreative.com/past-episodes/eps-25-css-backgrounds/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eps-25-css-backgrounds</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Wed, 10 Feb 2016 22:56:24 +0000</pubDate>
				<category><![CDATA[past episodes]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[image]]></category>
		<guid isPermaLink="false">http://www.webdevpod.com/?p=277</guid>

					<description><![CDATA[<p>http://www.w3schools.com/cssref/css3_pr_background.asp Individual Properties Background -image Background -repeat Background -position Background -size Shortcode background : #cccccc url(&#8220;img_tree.gif&#8221;) no-repeat fixed top left; Multiple Background Images background -image: url(&#8220;img_tree.gif&#8221;), url(&#8220;img_flwr.gif&#8221;); Properties positioning: top, bottom, left, right, center repeat, repeat-x (horizontal), repeat-y (vertical), no-repeat, horizontal% vertical% (top left is 0% 0%) horizontalpos verticalpos – ex= (0px 0px), (0em, 0em) [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-25-css-backgrounds/">Eps 25: CSS Backgrounds &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="color: #000000;"><a style="color: #000000;" href="http://www.w3schools.com/cssref/css3_pr_background.asp">http://www.w3schools.com/cssref/css3_pr_background.asp</a></span></p>
<h2><span style="color: #000000;">Individual Properties</span></h2>
<p><span style="color: #000000;">Background -image</span></p>
<p><span style="color: #000000;">Background -repeat</span></p>
<p><span style="color: #000000;">Background -position</span></p>
<p><span style="color: #000000;">Background -size</span></p>
<h2><span style="color: #000000;">Shortcode </span></h2>
<p><span style="color: #000000;">background : #cccccc url(&#8220;img_tree.gif&#8221;) no-repeat fixed top left;</span></p>
<h2><span style="color: #000000;">Multiple Background Images</span></h2>
<p><span style="color: #000000;">background -image: url(&#8220;img_tree.gif&#8221;), url(&#8220;img_flwr.gif&#8221;);</span></p>
<h2><span style="color: #000000;">Properties</span></h2>
<p><span style="color: #000000;">positioning: top, bottom, left, right, center repeat, repeat-x (horizontal), repeat-y (vertical), no-repeat,</span></p>
<p><span style="color: #000000;">horizontal% vertical% (top left is 0% 0%)</span></p>
<p><span style="color: #000000;">horizontalpos verticalpos – ex= (0px 0px), (0em, 0em)</span></p>
<p><span style="color: #000000;">background -image default is top-left corner of an element and repeated</span></p>
<p><span style="color: #000000;">You can set a background to inherit, though I don’t recommend it.</span></p>
<p><span style="color: #000000;">Gradients can be created – however it is not supported by all browsers. Use with caution. If you are interested in background gradients simply search css background gradients to find some tutorials</span></p>
<p><span style="color: #000000;">@TNPWdesign</span></p>
<p><span style="color: #000000;">@tommnorman</span></p>
<p><span style="color: #000000;">Dreamhost.com &#8211; promo code: TNPW</span></p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-25-css-backgrounds/">Eps 25: CSS Backgrounds &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/Eps25_CSSBackground.mp3" length="14897362" type="audio/mpeg" />

			</item>
		<item>
		<title>Eps 24: Building A Table &#8211; Talking HTML</title>
		<link>https://www.schaffencreative.com/past-episodes/268-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=268-2</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Wed, 03 Feb 2016 22:29:08 +0000</pubDate>
				<category><![CDATA[past episodes]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<guid isPermaLink="false">http://www.webdevpod.com/?p=268</guid>

					<description><![CDATA[<p>Welcome to Talking HTML, an audio/video internet thing for web developers who are just starting out W3 Schools The headers attribute specifies one or more header cells a table cell is related to and has no visual effect in ordinary web browsers, but can be used by screen readers. Please go to iTunes and Stitcher [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/268-2/">Eps 24: Building A Table &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="color: #000000;">Welcome to Talking HTML, an audio/video internet thing for web developers who are just starting out</span></p>
<h3><span style="text-decoration: underline;"><span style="color: #ff0000;"><a style="color: #ff0000; text-decoration: underline;" href="http://www.w3schools.com/tags/att_td_headers.asp">W3 Schools</a></span></span></h3>
<p><span style="color: #000000;">The headers attribute specifies one or more header cells a table cell is related to and has no visual effect in ordinary web browsers, but can be used by screen readers.</span></p>
<h3><span style="color: #000000;">Please go to iTunes and Stitcher and rate the show! Ratings get listeners!!</span></h3>
<h3><span style="color: #000000;"><span style="text-decoration: underline;"><span style="color: #ff0000;"><a style="color: #ff0000; text-decoration: underline;" href="http://www.webdevpod.com/">http://www.Webdevpod.com</a></span></span> for all the content and links</span></h3>
<p><span style="color: #000000;">@TNPWDesign</span></p>
<p><span style="color: #000000;">@tommnorman</span></p>
<p><span style="color: #000000;"><span style="text-decoration: underline;"><span style="color: #ff0000;"><a style="color: #ff0000; text-decoration: underline;" href="https://www.dreamhost.com/">DreamHost</a></span></span> promo code &#8211; tnpw</span></p>
<p>&nbsp;</p>
<h3><span style="color: #000000;">HTML Code</span></h3>
<p><span style="color: #000000;">&lt;div id=”table”&gt;</span><br />
<span style="color: #000000;">&lt;table&gt;</span><br />
<span style="color: #000000;">   &lt;tr class=&#8221;odd&#8221;&gt;</span><br />
<span style="color: #000000;">      &lt;th id=&#8221;project&#8221;&gt;Project Type&lt;/th&gt;</span><br />
<span style="color: #000000;">      &lt;th id=&#8221;price&#8221;&gt;Price&lt;/th&gt;</span><br />
<span style="color: #000000;">      &lt;th id=&#8221;description&#8221;&gt;General Requirements&lt;/th&gt;</span><br />
<span style="color: #000000;">   &lt;/tr&gt;</span><br />
<span style="color: #000000;">   &lt;tr&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;project&#8221;&gt;Websites&lt;/td&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;price&#8221;&gt;$750+&lt;/td&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;description&#8221;&gt;Personal, Business (non e-commerce) or Informational.&lt;/td&gt;</span><br />
<span style="color: #000000;">   &lt;/tr&gt;</span><br />
<span style="color: #000000;">   &lt;tr class=&#8221;odd&#8221;&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;project&#8221;&gt;E-Commerce&lt;/td&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;price&#8221;&gt;$2,500+&lt;/td&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;description&#8221;&gt;Websites in which selling merchandise is the main function.&lt;/td&gt;</span><br />
<span style="color: #000000;">   &lt;/tr&gt;</span><br />
<span style="color: #000000;">   &lt;tr&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;project&#8221;&gt;Hourly Rate&lt;/td&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;price&#8221;&gt;$30/hour&lt;/td&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;description&#8221;&gt;Reserved for projects under 10 hours of work and website maintenance.&lt;/td&gt;</span><br />
<span style="color: #000000;">   &lt;/tr&gt;</span><br />
<span style="color: #000000;">   &lt;tr class=&#8221;odd&#8221;&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;project&#8221;&gt;Charity and Non-profit&lt;/td&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;price&#8221;&gt;Negotiable&lt;/td&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;description&#8221;&gt;Reserved for organizations that deal with charities and non-profit organization.&lt;/td&gt;</span><br />
<span style="color: #000000;">   &lt;/tr&gt;</span><br />
<span style="color: #000000;">   &lt;tr&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;project&#8221;&gt;Podcast Setup&lt;/td&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;price&#8221;&gt;$20/hour (minimum 1 hr)&lt;/td&gt;</span><br />
<span style="color: #000000;">      &lt;td headers=&#8221;description&#8221;&gt;The setup and demonstration of the programs and options available in beginning and maintaining a FREE! audio and/or video podcast.&lt;/td&gt;</span><br />
<span style="color: #000000;">   &lt;/tr&gt;</span><br />
<span style="color: #000000;">&lt;/table&gt;</span><br />
<span style="color: #000000;">&lt;/div&gt;</span></p>
<h3><span style="color: #000000;">CSS Code</span></h3>
<p><span style="color: #000000;">div#table {</span><br />
<span style="color: #000000;">   width: 600px;</span><br />
<span style="color: #000000;">   font-size: 10px;</span><br />
<span style="color: #000000;">   margin: 5px auto 5px auto;</span><br />
<span style="color: #000000;">}</span><br />
<span style="color: #000000;">table {</span><br />
<span style="color: #000000;">   width: 400px;</span><br />
<span style="color: #000000;">   border: 3px solid #000;</span><br />
<span style="color: #000000;">   margin: auto;  </span><br />
<span style="color: #000000;">   padding: 10px;</span><br />
<span style="color: #000000;">   border-spacing: 0;</span><br />
<span style="color: #000000;">   text-align: center;</span><br />
<span style="color: #000000;">}</span><br />
<span style="color: #000000;">td, th {</span><br />
<span style="color: #000000;">   border: 1px solid #000;</span><br />
<span style="color: #000000;">   padding: 10px;</span><br />
<span style="color: #000000;">   text-align: center;</span><br />
<span style="color: #000000;">}</span><br />
<span style="color: #000000;">tr.odd {</span><br />
<span style="color: #000000;">   background: #333;</span><br />
<span style="color: #000000;">   color: #FFF;</span><br />
<span style="color: #000000;">}</span><br />
<span style="color: #000000;">table tr th {</span><br />
<span style="color: #000000;">   font-size: 1.6em;</span><br />
<span style="color: #000000;">   font-weight: bold;</span><br />
<span style="color: #000000;">   background: #999;</span><br />
<span style="color: #000000;">}</span><br />
<span style="color: #000000;">table tr td { </span><span style="color: #000000;">font-size: 1.3em;</span><br />
<span style="color: #000000;">}</span></p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/268-2/">Eps 24: Building A Table &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/Eps24_BuildingATable.mp3" length="13570760" type="audio/mpeg" />

			</item>
		<item>
		<title>A basic web development tutorial on styling a primary navigation using HTML and CSS. &#8211; Talking HTML</title>
		<link>https://www.schaffencreative.com/past-episodes/eps-23-styling-your-navigation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eps-23-styling-your-navigation</link>
		
		<dc:creator><![CDATA[Norm]]></dc:creator>
		<pubDate>Tue, 26 Jan 2016 22:48:05 +0000</pubDate>
				<category><![CDATA[past episodes]]></category>
		<category><![CDATA[podcast]]></category>
		<category><![CDATA[talking html]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[style]]></category>
		<guid isPermaLink="false">http://www.webdevpod.com/?p=231</guid>

					<description><![CDATA[<p>Welcome to Talking HTML, an audio/video internet thing for web developers who are just starting out This is a basic web development tutorial on styling a primary navigation using HTML and CSS. As always, the code will be in the show notes. Please go to iTunes, Stitcher or Google Play Music and rate the show! Ratings [&#8230;]</p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-23-styling-your-navigation/">A basic web development tutorial on styling a primary navigation using HTML and CSS. &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="color: #000000;">Welcome to Talking HTML, an audio/video internet thing for web developers who are just starting out</span></p>
<p><span style="color: #000000;">This is a basic web development tutorial on styling a primary navigation using HTML and CSS.</span></p>
<p><span style="color: #000000;">As always, the code will be in the show notes.</span></p>
<p><span style="color: #000000;">Please go to iTunes, Stitcher or Google Play Music and rate the show! Ratings get listeners!!</span></p>
<h2><span style="color: #000000;"><a style="color: #000000;" href="http://www.webdevpod.com">http://www.Webdevpod.com</a> for all the content and links</span></h2>
<h2><span style="color: #000000;">@TNPWDesign</span></h2>
<h2><span style="color: #000000;">@tommnorman</span></h2>
<h2><span style="color: #000000;"><a style="color: #000000;" href="https://www.dreamhost.com/">DreamHost</a> promo code &#8211; tnpw</span></h2>
<p>&nbsp;</p>
<p><span style="color: #000000;">/* HTML */</span></p>
<p><span style="color: #000000;">&lt;nav id=&#8221;nav&#8221;&gt;    </span></p>
<p><span style="color: #000000;">   &lt;ul&gt;</span></p>
<p><span style="color: #000000;">      &lt;li&gt;&lt;/li&gt;</span></p>
<p><span style="color: #000000;">     &lt;li&gt;&lt;/li&gt;</span></p>
<p><span style="color: #000000;">   &lt;/ul&gt;</span></p>
<p><span style="color: #000000;">&lt;/nav&gt;</span></p>
<p>&nbsp;</p>
<p><span style="color: #000000;">/* Navigation */</span></p>
<p><span style="color: #000000;">#nav {</span><br />
<span style="color: #000000;"> padding-top: 205px;</span><br />
<span style="color: #000000;"> margin-left: 105px;</span><br />
<span style="color: #000000;"> }</span><br />
<span style="color: #000000;"> #nav ul li{</span><br />
<span style="color: #000000;"> color: white;</span><br />
<span style="color: #000000;"> background: #113e63;</span><br />
<span style="color: #000000;"> display: block;</span><br />
<span style="color: #000000;"> width: 150px;</span><br />
<span style="color: #000000;"> position: relative;</span><br />
<span style="color: #000000;"> list-style-type: none;</span><br />
<span style="color: #000000;"> float: left;</span><br />
<span style="color: #000000;"> padding: 0px;</span><br />
<span style="color: #000000;"> margin: 0 3px 0 0;</span><br />
<span style="color: #000000;"> height: 40px;</span><br />
<span style="color: #000000;"> border: 0px solid #ffbf00;</span><br />
<span style="color: #000000;"> /*border-bottom: 3px solid #ffbf00;*/</span><br />
<span style="color: #000000;"> border-top: 5px solid #fff;</span><br />
<span style="color: #000000;"> -webkit-border-radius: 10px 10px 0 0;</span><br />
<span style="color: #000000;"> -moz-border-radius: 10px 10px 0 0;</span><br />
<span style="color: #000000;"> border-radius: 10px 10px 0 0;</span><br />
<span style="color: #000000;"> }</span><br />
<span style="color: #000000;"> #nav ul li a {</span><br />
<span style="color: #000000;"> display: block;</span><br />
<span style="color: #000000;"> text-decoration: none;</span><br />
<span style="color: #000000;"> color: white;</span><br />
<span style="color: #000000;"> font-size: 1.6em;</span><br />
<span style="color: #000000;"> line-height: 40px;</span><br />
<span style="color: #000000;"> text-align: center;</span><br />
<span style="color: #000000;"> }</span><br />
<span style="color: #000000;"> #nav ul li:hover,</span><br />
<span style="color: #000000;"> #nav ul li:focus,</span><br />
<span style="color: #000000;"> #nav ul li#current {</span><br />
<span style="color: #000000;"> background: #c1c4c4;</span><br />
<span style="color: #000000;"> line-height: 40px;</span><br />
<span style="color: #000000;"> border-top: 5px solid #7c765b;</span><br />
<span style="color: #000000;"> }</span><br />
<span style="color: #000000;"> #nav ul li a:hover,</span><br />
<span style="color: #000000;"> #nav ul li a:focus,</span><br />
<span style="color: #000000;"> #nav ul li#current a {</span><br />
<span style="color: #000000;"> color: #000;</span><br />
<span style="color: #000000;"> }</span></p>
<p>The post <a href="https://www.schaffencreative.com/past-episodes/eps-23-styling-your-navigation/">A basic web development tutorial on styling a primary navigation using HTML and CSS. &#8211; Talking HTML</a> appeared first on <a href="https://www.schaffencreative.com">Schaffen Creative</a>.</p>
]]></content:encoded>
					
		
		<enclosure url="http://media.blubrry.com/talkinghtml/content.blubrry.com/talkinghtml/Eps23_StylingYourNavigation.mp3" length="16621862" type="audio/mpeg" />

			</item>
	</channel>
</rss>
