<?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>style Archives &#8902; Schaffen Creative</title>
	<atom:link href="https://www.schaffencreative.com/tag/style/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.schaffencreative.com/tag/style/</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.2</generator>

<image>
	<url>https://www.schaffencreative.com/wp-content/uploads/2018/02/schaffen_creative-500x500-100x100.png</url>
	<title>style Archives &#8902; Schaffen Creative</title>
	<link>https://www.schaffencreative.com/tag/style/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<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>
