<?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>Blogging Basics 101&#187; HTML</title>
	<atom:link href="http://www.bloggingbasics101.com/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bloggingbasics101.com</link>
	<description>Tips &#38; instructions for beginning and intermediate bloggers.</description>
	<lastBuildDate>Wed, 11 Jan 2012 13:16:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How do I customize my blockquotes in Blogger?</title>
		<link>http://www.bloggingbasics101.com/2010/09/how-do-i-customize-my-blockquotes-in-blogger/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://www.bloggingbasics101.com/2010/09/how-do-i-customize-my-blockquotes-in-blogger/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 11:00:14 +0000</pubDate>
		<dc:creator>Melanie Nelson</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Blogger template]]></category>
		<category><![CDATA[customized blockquotes]]></category>

		<guid isPermaLink="false">http://www.bloggingbasics101.com/?p=3005</guid>
		<description><![CDATA[READ THIS: Before you start changing anything in your template code, please for the love of all that is sacred to your blog, back up the template. Blogger makes this really easy. On the Edit HTML page, just click the Download Full Template link and choose where to save the file. Make a note of [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><strong>READ THIS:</strong> Before you start changing anything in your template code, please for the love of all that is sacred to your blog, back up the template. Blogger makes this really easy. On the Edit HTML page, just click the Download Full Template link and choose where to save the file. Make a note of it so you can find it if you need it.</p>
<p>OK, now that we have that out of the way, let&#8217;s figure out this customized blockquote business.</p>
<ol>
<li>Log in to Blogger.com</li>
<li>Go to Design &gt; Edit HTML</li>
<li>Find this code in your HTML: blockquote {</li>
</ol>
<p>The entire code string will look similar to (though probably not exactly like) this:</p>
<p>blockquote {<br />
margin:.75em 0;<br />
border:1px dotted #619644;<br />
border-width:1px 0;<br />
padding:5px 15px;<br />
color: #000<br />
}</p>
<p>In a blog post, the code above would tell your browser to display the blockquote between two green dotted lines:</p>
<p><a href="http://www.bloggingbasics101.com/wp-content/uploads/2010/09/blockquote1.png" ><img class="aligncenter size-full wp-image-3007" title="blockquote1" src="http://www.bloggingbasics101.com/wp-content/uploads/2010/09/blockquote1.png" alt="" width="452" height="279" /></a></p>
<p>Below are three different ideas for customizing your blockquotes. I show you how the blockquote will look, then I show you the code to use. To change your current blockquotes to one of the customized versions below, just copy the code from here and use it to replace the current blockquote code in your template.</p>
<h3>Vertical Line Blockquote</h3>
<p><a href="http://www.bloggingbasics101.com/wp-content/uploads/2010/09/blockquote_vline.png" ><img class="aligncenter size-full wp-image-3008" title="blockquote_vline" src="http://www.bloggingbasics101.com/wp-content/uploads/2010/09/blockquote_vline.png" alt="" width="446" height="283" /></a><br />
<strong> Use this code for a vertical line beside your blockquote:</strong><br />
blockquote {<br />
font: 14px normal helvetica, sans-serif;<br />
margin-top: 10px;<br />
margin-bottom: 10px;<br />
margin-left: 50px;<br />
padding-left: 15px;<br />
border-left: 3px solid #619644;<br />
}</p>
<h3>Colored Background for Blockquote</h3>
<p><a href="http://www.bloggingbasics101.com/wp-content/uploads/2010/09/blockquote2.png" ><img class="aligncenter size-full wp-image-3009" title="blockquote2" src="http://www.bloggingbasics101.com/wp-content/uploads/2010/09/blockquote2.png" alt="" width="448" height="298" /></a><br />
<strong> Use this code for a colored background for your blockquote:</strong><br />
blockquote {<br />
margin: 1em 3em;<br />
padding: .5em 1em;<br />
background-color: #b1d2a3;<br />
}</p>
<p>To change the color to match your blog&#8217;s design, simply change the <a href="http://www.bloggingbasics101.com/2008/09/what-is-a-hexad/"  target="_blank">hex color</a>.</p>
<h3>Box Around Blockquote</h3>
<p><a href="http://www.bloggingbasics101.com/wp-content/uploads/2010/09/blockquote_box.png" ><img class="aligncenter size-full wp-image-3010" title="blockquote_box" src="http://www.bloggingbasics101.com/wp-content/uploads/2010/09/blockquote_box.png" alt="" width="451" height="299" /></a><br />
<strong> Use this code to put a box around your blockquote:</strong><br />
blockquote {<br />
margin:1em 20px;<br />
border: 1px solid #619644;<br />
padding: 10px;<br />
}</p>
<p>Where it says &#8220;solid&#8221; you can change that to &#8220;dashed&#8221; or &#8220;dotted&#8221; (without the quotes) to see if you like that look better.</p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingbasics101.com/2010/09/how-do-i-customize-my-blockquotes-in-blogger/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How do I format recipes on my blog?</title>
		<link>http://www.bloggingbasics101.com/2010/04/how-do-i-format-recipes-on-my-blog/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://www.bloggingbasics101.com/2010/04/how-do-i-format-recipes-on-my-blog/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 11:00:13 +0000</pubDate>
		<dc:creator>Melanie Nelson</dc:creator>
				<category><![CDATA[Content/Writing]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blog post formatting]]></category>
		<category><![CDATA[format a recipe]]></category>
		<category><![CDATA[HTML table]]></category>
		<category><![CDATA[using blockquotes]]></category>
		<category><![CDATA[using bulleted lists]]></category>

		<guid isPermaLink="false">http://www.bloggingbasics101.com/?p=2653</guid>
		<description><![CDATA[Reader Question: I have trouble with formatting recipes and getting the columns lined up. I usually do several lines of ingredients and amounts and hit return.  Then I will highlight the ingredients and amounts and click on the bullet feature and then un-do it.  Then is when the ingredients come together, but they are not [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p style="padding-left: 30px;"><a rel="nofollow" href="http://www.flickr.com/photos/49968232@N00/12364944/" title="question mark ?"  target="_blank"><img class="alignleft" style="border: 0pt none;" src="http://farm1.static.flickr.com/7/12364944_14794d1055_t.jpg" border="0" alt="question mark ?" width="100" height="100" /></a><strong>Reader Question:</strong><br />
I have trouble with formatting recipes and getting the columns lined up. I usually do several lines of ingredients and amounts and hit return.  Then I will highlight the ingredients and amounts and click on the bullet feature and then un-do it.  Then is when the ingredients come together, but they are not aligned!  What am I doing wrong?</p>
<p><strong>Melanie&#8217;s Answer:</strong></p>
<p>It doesn&#8217;t sound like you&#8217;re doing anything wrong. There just isn&#8217;t a great way to format some things without specific HTML (like that for a table, which I&#8217;ll show you in sec). Since you want to format the ingredients of recipes, I think you have a few choices.</p>
<ol>
<li>Instead of trying to format the list with a bulleted list, you can simply type the amount of the ingredient, hit the space bar, then type your ingredient (which is how most recipe sites I&#8217;ve visited do it). Example:</li>
<p>10 roma tomatoes<br />
1 yellow onion<br />
1 lime<br />
1 bunch fresh parsley<br />
1 jalapeno pepper</p>
<li>If you like the simple typed list above, but want it indented, you can do that without a bulleted list. Just type your list, highlight it, then click the blockquote button in your editor. It looks like this: <img class="alignnone" title="Blockquote Button" src="http://www.bloggingbasics101.com/images/blockquote_button.png" alt="" width="35" height="32" /> Your list will look like this:<br />
<blockquote><p>10 roma tomatoes<br />
1 yellow onion<br />
1 lime<br />
1 bunch fresh parsley<br />
1 jalapeno pepper</p></blockquote>
<p>It&#8217;s a very subtle difference from the list in #1 above, but you should notice it&#8217;s indented a little. <strong>NOTE: </strong>Your blockquotes will likely look different than mine because my template automatically adds the gray color to the text and the line to the left as part of the formatting. Your template will likely just indent your text.</li>
<li>If that&#8217;s not what you want, you can implement an HTML table. I&#8217;ll be honest with you: the method above is easier, especially if you don&#8217;t have experience with HTML. Putting a table together with HTML is easy, but you have to keep track of what you&#8217;re doing or the cells won&#8217;t line up properly. Here&#8217;s what your ingredients list might look like with a simple table:</li>
<table>
<tbody>
<tr>
<td>1</td>
<td>can tomatoes</td>
</tr>
<tr>
<td>1</td>
<td>bunch parsley</td>
</tr>
<tr>
<td>1</td>
<td>yellow onion</td>
</tr>
<tr>
<td>1</td>
<td>lime</td>
</tr>
<tr>
<td>1</td>
<td>jalapeno pepper</td>
</tr>
</tbody>
</table>
</ol>
<p>The HTML for that table looks like this (notes in red just tell you what the HTML is doing and shouldn&#8217;t be used in the HTML you write for your table):</p>
<p>&lt;table&gt; <span style="color: #ff0000;">signals the beginning of the table</span><br />
&lt;tr&gt; <span style="color: #ff0000;">signals the beginning of a table row</span><br />
&lt;td&gt;1&lt;/td&gt;&lt;td&gt; cantomatoes&lt;/td&gt; <span style="color: #ff0000;">&lt;td&gt; signals the beginning of a table cell; &lt;/td&gt; signals the end of that cell. You can have as many table cells (&lt;td&gt;&lt;/td&gt;) on a row as you like.</span></p>
<p>&lt;/tr&gt; <span style="color: #ff0000;">signals the end of that table row</span><br />
&lt;tr&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;bunch parsley&lt;/td&gt;&lt;/tr&gt; <span style="color: #ff0000;">(repeated from above)</span><br />
&lt;tr&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;yellow onion&lt;/td&gt;&lt;/tr&gt;<br />
&lt;tr&gt;&lt;td&gt;1&lt;/td&gt;&lt;td&gt;lime&lt;/td&gt;&lt;/tr&gt;<br />
&lt;/table&gt; <span style="color: #ff0000;">signals the end of the table</span></p>
<p>As you can see, there&#8217;s not a lot of difference between a basic table and simply typing your ingredients. You can adjust the padding of each cell (the white space around the cell; it makes it appear there is more space around each table cell) to get the table to look just right, but it takes some tweaking and experimenting to figure out what works for you. To learn how to make an HTML table, please see the <a href="http://www.w3schools.com/html/html_tables.asp"  target="_blank">W3 Schools Tutorial on HTML Tables</a>.</p>
<p><small><a href="http://creativecommons.org/licenses/by-nc-sa/2.0/" title="Attribution-NonCommercial-ShareAlike License"  target="_blank"><img src="http://www.bloggingbasics101.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/"  target="_blank">photo</a> credit: <a rel="nofollow" href="http://www.flickr.com/photos/49968232@N00/12364944/" title="Leo Reynolds"  target="_blank">Leo Reynolds</a></small></p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingbasics101.com/2010/04/how-do-i-format-recipes-on-my-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Learning HTML Can Help You Take Control of Your Blog</title>
		<link>http://www.bloggingbasics101.com/2010/03/learning-html-can-help-you-take-control-of-your-blog/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://www.bloggingbasics101.com/2010/03/learning-html-can-help-you-take-control-of-your-blog/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 11:00:13 +0000</pubDate>
		<dc:creator>Melanie Nelson</dc:creator>
				<category><![CDATA[Blog Maintenance]]></category>
		<category><![CDATA[FAQ]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[fix my blog post]]></category>
		<category><![CDATA[learning HTML]]></category>
		<category><![CDATA[semantics markup]]></category>

		<guid isPermaLink="false">http://www.bloggingbasics101.com/?p=1757</guid>
		<description><![CDATA[If you&#8217;re blogging and you don&#8217;t know even a little bit of HTML, you&#8217;re doing yourself a disservice. HTML tells a web browser how to display text elements on your web page. Learning and using HTML is fairly intuitive; I think you&#8217;ll find it very easy to learn. Knowing how to use HTML on your [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" href="http://www.flickr.com/photos/30127486@N00/346483297/" title="html tag italicized"  target="_blank"><img class="alignleft" style="border: 0pt none;" src="http://farm1.static.flickr.com/136/346483297_c4cb93ab4e_m.jpg" border="0" alt="html tag italicized" width="168" height="240" /></a>If you&#8217;re blogging and you don&#8217;t know even a little bit of HTML, you&#8217;re doing yourself a disservice. HTML tells a web browser how to display text elements on your web page. Learning and using HTML is fairly intuitive; I think you&#8217;ll find it very easy to learn. Knowing how to use HTML on your own web site or blog allows you to enhance your own posts and troubleshoot small issues that arise (like when your posts don&#8217;t appear quite the way you intended).</p>
<p>The ironic thing about computers is that, for all their apparent smarts, they have to be <em>told </em>what to do. And to tell a computer what to do, you have to speak its language. There are many programming languages out there that help browsers interpret web sites or make them function, but for today we&#8217;re talking about the most basic level of coding your web site: HTML. HTML stands for HyperText Markup Language and it&#8217;s the code that tells your browser how to read and display text elements on your web page.</p>
<p>HTML is pretty intuitive. If you use the HTML tab on your blog&#8217;s compose editor, you can see how your posts are marked up with HTML code. If you look at it closely, you&#8217;ll notice a few recurring things:</p>
<ol>
<li>HTML tags usually (but not always) come in pairs. These pairs are the opening tag (which tells the software that a command is coming) and a closing tag (which tells the software that the command is finished). For example, paragraphs are usually coded with &lt;p&gt; (the opening command) at the beginning and &lt;/p&gt; at the end. The / is what tells the software that the command is ending.</li>
<li>References (or URLs) are always in quotes. If you look at the HTML for a link, you&#8217;ll see something like this: &lt;a href=&#8221;http://www.bloggingbasics101.com&#8221;&gt;Blogging Basics 101&lt;/a&gt;. That link looks like this on your page: <a href="http://www.bloggingbasics101.com"  target="_blank">Blogging Basics 101</a>. The key to making sure the browser reads the link correctly is to ensure the URL you&#8217;re linking to is enclosed in quotes. And not just any quotes. If you use smart quotes (i.e., curly quotes), the browser doesn&#8217;t always read those and your link doesn&#8217;t work. To avoid curly quotes, don&#8217;t write HTML in Microsoft Word or Mac Pages. You can use your blog&#8217;s editor or even TextEdit or Notepad.</li>
</ol>
<p>There are many good basic HTML tutorials online so I&#8217;m going to point you to them instead of trying to cover everything here:</p>
<ul>
<li><a href="http://www.htmlprimer.com/"  target="_blank">HTML Primer</a> provides tutorials for beginning or advanced users.</li>
<li><a href="http://www.w3schools.com/html/default.asp"  target="_blank">W3 Schools</a> gives you everything you need to know about HTML and then a little more.</li>
<li><a href="http://tizag.com/htmlT/"  target="_blank">Tizag</a> has tutorials on learning HTML, but also provides tutorials for CSS, PHP, scripting, and databases so you can continue to learn.</li>
</ul>
<p>Technically speaking, HTML is not a computer programming language; it&#8217;s a markup language. What I mean by that is, if you want to ensure a line of text is seen as a header (or bold or italics) in a browser, you have to tell the browser to display that text as you want it seen &#8212; you have to <em>markup</em> the text. In the case of a header, you would decide which level of header you want to display (e.g., Header 1, 2, or 3) and then use the HTML for that header. A header 3 would be marked as follows:</p>
<p style="padding-left: 30px;">&lt;h3&gt;Text for Header Example&lt;/h3&gt;</p>
<p>That text would appear in a browser as follows:</p>
<h3 style="padding-left: 30px;">Text for Header Example</h3>
<p>As you learn HTML and begin applying it, you&#8217;ll see that there are different markups for text emphasis. For example, you may see the markup to bold a word as &lt;b&gt;text&lt;/b&gt; or &lt;strong&gt;text&lt;/strong&gt;. Or, if you want your text italicized you may see it marked up as &lt;i&gt;text&lt;/i&gt; or &lt;em&gt;text&lt;/em&gt;. Does it really matter which HTML markup you use? Well, yes. It does. If you&#8217;ve ever debated someone, you probably understand the importance of semantics of the spoken word. Semantics in HTML are just as important. As Virginia DeBolt of <a href="http://www.webteacher.ws"  target="_blank">Web Teacher</a> explains,</p>
<p style="padding-left: 30px;">&#8220;The &lt;b&gt; tag is indeed bold. It is purely visual and carries with it no semantic meaning to indicate importance or emphasis. Therefore, non-visual browsers (such as screen readers) get nothing from the &lt;b&gt; tag. It&#8217;s as if it doesn&#8217;t exist. The &lt;strong&gt; tag means strongly emphasized. It is interpreted visually in different ways by various browsers–often as bold. The &lt;strong&gt; tag <em>always</em> carries the semantic meaning of strong emphasis, even for non-visual browsers.</p>
<p style="padding-left: 30px;">The sister tag &lt;em&gt; means emphasized, and it is often rendered in italic–but not always in italic. The &lt;em&gt; tag <em>always </em>conveys semantic meaning for emphasis. If you want italic for purely visual reasons (no attached emphasis), use &lt;i&gt;. If you want italic because you are giving the title of a book or movie, use &lt;cite&gt;, which conveys the semantic message that the words in italic are a citation.&#8221;</p>
<p>But semantics aren&#8217;t just important for interpreting text decoration correctly. Semantic HTML is important in SEO as well. Laura Scott of <a href="http://rarepattern.com"  target="_blank">Rare Pattern</a> explains:</p>
<p style="padding-left: 30px;">&#8220;The use of semantic markup helps search engines index your content correctly. If you wrap a sub-header in &lt;b&gt; tags, then Google *may* consider it somewhat important, but Google will not consider it as important as a &lt;h3&gt; tag (commonly used to show a sub-header). Wrapping citation text in &lt;i&gt; and &lt;/i&gt; gives you italics, but wrapping citation text in &lt;cite&gt; and &lt;/cite&gt; not only gives you visual styling, it tells Google, Bing, etc. that this text (or link) is a citation. All these things will get increasingly important as search gets more sophisticated and smarter. The more &#8216;robot food&#8217; we can give the search bots, the better for SEO.&#8221;</p>
<p>As you spend more time blogging, you&#8217;ll find that even a <em>little</em> knowledge about how to use HTML will help you control how your web pages are displayed. Take a little time and peruse the tutorials I&#8217;ve linked to and try out some of the things you learn, then please let me know if they&#8217;ve helped you.</p>
<p><small><a href="http://creativecommons.org/licenses/by-sa/2.0/" title="Attribution-ShareAlike License"  target="_blank"><img src="http://www.bloggingbasics101.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/"  target="_blank">photo</a> credit: <a rel="nofollow" href="http://www.flickr.com/photos/30127486@N00/346483297/" title="Jesper Rønn-Jensen"  target="_blank">Jesper Rønn-Jensen</a></small></p>
<p><em>A version of this post was published at BlogHer.com.</em></p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingbasics101.com/2010/03/learning-html-can-help-you-take-control-of-your-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Helpful Blogging Links: Blissdom Recaps, Women in Public Speaking, Create a Sliding Button</title>
		<link>http://www.bloggingbasics101.com/2010/02/helpful-blogging-links-blissdom-recaps-women-in-public-speaking/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://www.bloggingbasics101.com/2010/02/helpful-blogging-links-blissdom-recaps-women-in-public-speaking/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 11:00:03 +0000</pubDate>
		<dc:creator>Melanie Nelson</dc:creator>
				<category><![CDATA[Blissdom '10]]></category>
		<category><![CDATA[Blogging Conferences]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[animated sliding button]]></category>
		<category><![CDATA[Blissdom]]></category>
		<category><![CDATA[blog conference recaps]]></category>
		<category><![CDATA[public speaking]]></category>

		<guid isPermaLink="false">http://www.bloggingbasics101.com/?p=2283</guid>
		<description><![CDATA[photo credit: mrhayata Every day I share links to all the tech articles I love on the Blogging Basics 101 Tumblr blog! Subscribe to the Tumblr blog and never miss another article. Crafty Love by Arianne at To Think Is To Create. Arianne was part of a panel on writing well. She (along with Megan [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><small><a href="http://creativecommons.org/licenses/by-sa/2.0/" title="Attribution-ShareAlike License"  target="_blank"><img src="http://www.bloggingbasics101.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/"  target="_blank">photo</a> credit: <a rel="nofollow" href="http://www.flickr.com/photos/36516818@N00/319625685/" title="mrhayata"  target="_blank">mrhayata</a></small><br />
<a rel="nofollow" href="http://www.flickr.com/photos/36516818@N00/319625685/" title="Surrounded for Illuminations"  target="_blank"><img class="alignleft" style="border: 0pt none;" src="http://farm1.static.flickr.com/130/319625685_7e47100bd7_m.jpg" border="0" alt="Surrounded for Illuminations" width="160" height="240" /></a><em>Every day</em><em> I share links to all the tech articles I love on the <a href="http://bloggingbasics101.tumblr.com/"  target="_blank">Blogging   Basics 101 Tumblr blog</a>! Subscribe to the Tumblr blog and never miss   another article.</em></p>
<ul>
<li><a href="http://www.tothinkistocreate.com/2010/02/16/crafty-love/"  target="_blank">Crafty Love</a> by Arianne at To Think Is To Create. Arianne was part of a panel on writing well. She (along with Megan of <a href="http://www.velveteenmind.com/"  target="_blank">Velveteen Mind</a>, Deb of <a href="http://www.debontherocks.com/"  target="_blank">Deb on the Rocks</a>, and Amber of <a href="http://therunamuck.com/"  target="_blank">The Run a Muck</a>) shared their writing resources, tricks, and processes. This article is an overview of that session and contains links to even more resources.</li>
</ul>
<ul>
<li><a rel="nofollow" href="http://eloquentwoman.blogspot.com/2010/02/4-myths-to-stop-about-women-public.html"  target="_blank">4 Myths to Stop About Women and Public Speaking</a> by Denise Graveline at The Eloquent Woman. Although the problem of too few women speakers at conferences is not new, it&#8217;s only lately been a discussion in the world of social media in the past year or so (most likely because social media is so much more personal and pervasive). Here are just four of the reasons (and the rebuttals to that logic) heard over and over about why women aren&#8217;t asked to speak at events.</li>
</ul>
<ul>
<li><a href="http://angengland.com/blogging-session-notes-link-up/"  target="_blank">Blissdom Blogging Session Notes</a> via Angela England. Five hundred women attended Blissdom and many of us have been sharing the wisdom we heard. Angela has a list of the recaps people have written for specific sessions.</li>
</ul>
<ul>
<li><a href="http://davidwalsh.name/animated-button"  target="_blank">Create an Animated Sliding Button Using MooTools</a> by David Walsh. If you&#8217;re in the mood to learn something new or just practice your coding, head over to David Walsh&#8217;s blog and try out this tutorial. He shows you a demo of what you&#8217;re making, then gives you the HTML, CSS, and MooTools JavaScript.</li>
</ul>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingbasics101.com/2010/02/helpful-blogging-links-blissdom-recaps-women-in-public-speaking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging Tutorial Links: HTML, CSS, WordPress</title>
		<link>http://www.bloggingbasics101.com/2009/10/blogging-tutorial-links-html-css-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://www.bloggingbasics101.com/2009/10/blogging-tutorial-links-html-css-wordpress/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 05:00:56 +0000</pubDate>
		<dc:creator>Melanie Nelson</dc:creator>
				<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[Helpful Blogging Links]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[blog tutorial]]></category>
		<category><![CDATA[blogging basics]]></category>
		<category><![CDATA[create drop-down menu]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[how-to blog]]></category>
		<category><![CDATA[style sheets]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video tutorial]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.bloggingbasics101.com/?p=1775</guid>
		<description><![CDATA[I have been a collector my entire life. I think I come by it naturally since my mother&#8217;s side of the family tends to &#8220;collect&#8221; things in the form of never throwing anything away on the off chance it might be valuable or hold the key to the family&#8217;s history. From reality television, I now [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I have been a collector my entire life. I think I come by it naturally since my mother&#8217;s side of the family tends to &#8220;collect&#8221; things in the form of never throwing anything away on the off chance it might be valuable or hold the key to the family&#8217;s history. From reality television, I now know they are hoarders, not collectors. Me? I tend to deny my problem because what I mostly collect are links. That is, when I read an article online that I think may come in handy some day, I save the link. I have a folder on my computer&#8217;s desktop called mhl, (short for Mighty Helpful Links). Within that folder are sub-folders for specific categories for things like SEO, vlogging, analytics, etc. Oh, yes. Make no mistake: I hoard links. Today, though, that may work in your favor&#8211;especially if you&#8217;re at all interested in learning the basics of HTML or CSS or have a WordPress blog you&#8217;d like to tweak. That&#8217;s right, folks, I&#8217;m sharing some of my links to tutorials.</p>
<p><strong>HTML</strong></p>
<ul>
<li><a href="http://www.beepthegeek.com/2009/08/welcome-to-html-tutorials-introduction-lesson-1.html" >HTML Tutorial Series</a> via Beep the Geek. HTML is the most basic part of structuring web pages. You&#8217;ll need to understand a little HTML and the logic behind it if you want to move up to CSS and PHP and some other stuff I don&#8217;t pretend to know a lot about. You&#8217;ll be surprised by how much you can fake it if you know a little HTML.</li>
<li><a href="http://www.webmonkey.com/tutorial/tag/web_basics" class="broken_link">Web Basics</a> via Web Monkey. Rather than point you to a specific article at this site, I&#8217;m pointing you to the main page for the Web Basics category. Here you&#8217;ll find tutorials for HTML, CSS, and XML.</li>
</ul>
<p><strong>CSS</strong></p>
<ul>
<li><a href="http://sixrevisions.com/css/20_websites_learn_master_css/" >20 Websites To Help You Learn and Master CSS</a> via Six Revisions. If you aren&#8217;t currently following Six Revisions, you should be. I noticed that many of my hoarded links are from this site. I learn a lot there. And they use the word &#8220;grok&#8221;, so, you know, I love them and stuff. This particular article lists and describes 20 sites with tutorials. You&#8217;re sure to find at least a few that can help you get started with CSS.</li>
<li><a href="http://sixrevisions.com/css/30-exceptional-css-navigation-techniques/" >30 Exceptional CSS Navigation Techniques</a> via Six Revisions. Are you fairly comfortable with CSS and want to try your hand at a nav bar? This is the article for you. It provides sample nav bars and, when you click on the title of the nav bar, you&#8217;re taken to a page with instructions on how to build that nav bar.</li>
<li><a href="http://www.bloggingtips.com/2008/12/14/custom-styling-for-posts/" >Custom Styling for Posts</a> via Blogging Tips. As the author, Sarah, points out, customizing the style of individual posts can be handy if you&#8217;re using a platform like WordPress as a content management system (CMS).  This article shows you how to customize a single post, all posts in a specific category, or all posts in a sub-category.</li>
<li><a href="http://www.metatitan.com/cssbuilder.php" class="broken_link">CSS Builder</a> via MetaTitan. This is a simple tool to help you build CSS on the fly. There you go. Done.</li>
<li><a href="http://sixrevisions.com/css/css-tips/css-tip-1-resetting-your-styles-with-css-reset/" >Resetting Your Styles with CSS Reset</a> via Six Revisions. I told you I learn a lot here. This article shows you how to set the styles of your page elements &#8220;to a baseline value so that you avoid cross-browser differences due to their built-in default style settings. By resetting your styles, you avoid defaulting to the browser’s built-in styles, which differs from browser to browser.&#8221;</li>
</ul>
<p><strong>WordPress</strong></p>
<ul>
<li><a href="http://wordpress.tv/" >WordPress.tv</a>. The tagline says it all: <em>WordPress.tv is your visual resource for all things WordPress</em>. If you are at all interested in learning about WordPress, this should be your first stop. The web site is categorized so you can find what you&#8217;re looking for easily. On the home page you&#8217;ll see options that offer Latest Videos, WordCamp Videos (WordCamps are mini conferences where WP fans congregate to share their knowledge; all levels welcome), and Popular Videos.</li>
<li><a href="http://speckyboy.com/2008/11/17/100-wordpress-video-tutorials-from-basic-to-advanced/" >100+ WordPress Video Tutorials, from Basic to Advanced</a> via SpeckyBoy. This article provides a list of tutorials grouped by web site. The tutorials listed cover everything from installing WP to configuring your Google site map to inserting an image in PHP list.</li>
<li><a href="http://elitebydesign.com/beginner-wordpress-help-guide/" >25+ Essential Articles for Every WordPress Beginner</a> via Elite by Design. This list points you to information about the WP Codex, using SEO with WordPress, choosing plug-ins and widgets, using your admin settings, and more.</li>
<li><a href="http://themeshaper.com/wordpress-themes-templates-tutorial/" >How to Create a WordPress Theme</a> via ThemeShaper. Are you ready to make your own theme? Perfect it and sell it? I applaud your tenacity and drive. Start here.</li>
</ul>
<p><strong>Miscellaneous</strong></p>
<ul>
<li><a href="http://hubpages.com/hub/How-To-Get-Started-With-HTML---Write-Your-First-Web-Page-Now" >A List of Essential Web Design Skills</a> via Hub Pages. Liz is one of my favorite tech gals. In this article she explains what you need to know if you want to design web sites or, at least what you should be looking for if you&#8217;re hiring it out.</li>
<li><a rel="nofollow" href="http://www.youtube.com/watch?v=NLlGopyXT_g" >Web 2.0 in just under 5 minutes</a>. An interesting visual overview of Web 2.0, how we got here, and where we&#8217;re going.</li>
</ul>
<p><em>This article was cross-posted at BlogHer.com.</em></p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingbasics101.com/2009/10/blogging-tutorial-links-html-css-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>FAQs from Beginning Bloggers</title>
		<link>http://www.bloggingbasics101.com/2009/08/faqs-from-beginning-bloggers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://www.bloggingbasics101.com/2009/08/faqs-from-beginning-bloggers/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 05:00:34 +0000</pubDate>
		<dc:creator>Melanie Nelson</dc:creator>
				<category><![CDATA[Buttons/Banners/Graphics]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[FAQ]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[beginning blogger tutorial]]></category>
		<category><![CDATA[blogher08]]></category>
		<category><![CDATA[custom banner]]></category>
		<category><![CDATA[custom header]]></category>
		<category><![CDATA[make a banner]]></category>

		<guid isPermaLink="false">http://www.bloggingbasics101.com/?p=1663</guid>
		<description><![CDATA[Melanie Nelson answers some of the most frequently asked questions by beginning bloggers. For example, what is a permalink? How do I make my own banner? Where can I find HTML resources for my blog? What sections should my blog have?
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Last year, at <a href="http://www.blogher.com/thank-you-blogher-08" >BlogHer 2008</a> in San Franciso, I appeared on a panel with four other women called <a href="http://www.wannabehippie.com/blog/2008/7/18/how-we-communicate-faqs-for-beginning-bloggers/" class="broken_link">FAQs for Beginning Bloggers</a>. Our panel was flat-out amazing. We met fantastic bloggers and answered many beginner questions.</p>
<p>Below you will find my notes from my portion of the panel. In addition, you can find <a href="http://www.webgrrls.com/blog/2008/07/18/how-we-communicate-faqs-for-beginning-bloggers/" >Nelly’s notes at WebGrrrls</a>.</p>
<h2><span style="font-size: 1.2em;">How do I find basic html resources to help me remember how to do things like strike-thrus etc.?</span></h2>
<p>When I research information for <a href="http://www.bloggingbasics101.com" >Blogging Basics 101</a>, I start with a Google search of key words. I also go to each of the three main platforms (Blogger, TypePad, and WordPress) and search their help files with those same key words. More often than not, I find what I’m looking for.</p>
<p>The following five sites are excellent resources for all bloggers to refresh your memory on how to do things like strike-throughs or add a button to your sidebar.</p>
<ul>
<li><a href="http://www.bloggingbasics101.com" >Blogging Basics 101</a>: This site starts from the beginning and walks you through everything from choosing your blog host and choosing a blog name to figuring out how to do a strike-through and customize your sidebars.</li>
<li><a href="http://www.bloggerbuster.com/" >Blogger Buster</a>: Blogger users should have this one in their bookmarks. Everything you want to know and then some about how to manage and customize your Blogger blog.</li>
<li><a href="http://theedublogger.edublogs.org/" >Edublogge</a>r: This site is specifically written for people who design, develop, and use educational blogs. However, the information spans niches and is valuable to all bloggers. The author uses many screen captures to make instructions especially easy to follow.</li>
<li><a href="http://blog-well.com" >BlogWell</a>: This site offers everything from theory and design articles to HTML and CSS instruction for WordPress. It is targeted to small businesses and non-profits.</li>
</ul>
<h2><span style="font-size: 1.2em;">What are and how do I create permalinks? </span></h2>
<p>A permalink is the link to an individual blog post. These are important because if you ever need to link to an exact blog entry (e.g., for a carnival or an archived post), you use the permalink as your link. It&#8217;s poor blog etiquette not to use the permalink.</p>
<p>If you don&#8217;t use the permalink, you&#8217;ll just be linking to your main blog page. The problem with that is that, as you post new blog entries, the newest entry appears at the top of your main blog page and the other entries are pushed down on the page. The entry your readers are looking for may be down at the bottom of the page or already in the archives; your reader has no idea where to find the entry! If they click over to your site expecting to see a post specific to a carnival and they see a different post, they may not take the time to find the &#8220;real&#8221; post they&#8217;re looking for.</p>
<p>You can find the permalink link under any blog entry. However, not all blog hosts/designs handle permalinks the same way.</p>
<ul>
<li>Typepad: There&#8217;s a link that actually says Permalink under the entry.</li>
<li>Blogger: The link varies. It&#8217;s usually the time stamp of the post or the title.</li>
<li>WordPress: Has a link at the bottom of the post named Permalink and/or the title of the post.</li>
</ul>
<h2><span style="font-size: 1.2em;">What kind of basic sections should I have in my blog?</span></h2>
<p>I take this to mean <em>What should I place in my sidebar?</em> Your sidebar is your list of things you want to keep handy for your readers and for yourself. Your sidebar is offering your readers something in addition to the day’s post. However, too many links in the sidebar can clutter your design and overwhelm your audience. Keep things clean and orderly.</p>
<ul>
<li>Recent Posts/Most popular posts/Archives: You don’t need all three. Just choose one of these.</li>
<li>Categories or Search: I find that search works well for my blogs, because I have a long list of categories.</li>
<li>About Me/E-mail/Contact information: This is your opportunity to explain your blog. E-mail or other contact information should be readily available so your readers (or PR and marketing people) can contact you.</li>
<li>RSS subscription button: <a href="http://www.bloggingbasics101.com/rssfeeds/" class="broken_link">Blogging Basics 101</a> has an entire section on <a href="http://www.bloggingbasics101.com/category/rssfeeds/"  target="_blank">RSS and installation</a> and you can review <a href="http://www.webgrrls.com/blog/2008/07/18/how-we-communicate-faqs-for-beginning-bloggers/" >Nelly’s notes at WebGrrrls</a> as well.</li>
<li>Blogroll (if you choose to do one)</li>
</ul>
<h2><span style="font-size: 1.2em;">Hosted vs. Non-Hosted? </span></h2>
<p>Hosted: A blog that resides on the host’s server (e.g., Blogger or TypePad or WordPress.com).</p>
<p>Non-hosted: A blog that resides on the user’s (yours) server. You pay a third-party to host your blog (e.g., Moveable Type or WordPress.org).</p>
<blockquote><p>Hosted Pros: Easy to get started because you don’t have to worry about server issues.</p>
<p>Hosted Cons:</p>
<ul>
<li>Blogger blogs can appear to be less professional</li>
<li>Platform limitations (e.g., archiving can be less than<br />
user-friendly; TypePad can have issues with comment spam and trackback<br />
spam; difficult SEO)</li>
<li>Less control over HTML and CSS</li>
<li>WordPress.com does not allow advertising.</li>
</ul>
<p>Non-Hosted Pros:</p>
<ul>
<li>Control over permalinks (articles aren’t randomly named) which can help with SEO</li>
<li>Control over how archives are managed</li>
<li> Control over CSS/HTML</li>
</ul>
<p>Non-Hosted Cons:</p>
<ul>
<li>WordPress.org only supports one blog per installation; however, Moveable Type supports multiple blogs per installation.</li>
<li>Moveable Type isn’t as malleable as WordPress.org.</li>
</ul>
</blockquote>
<h2><span style="font-size: 1.2em;">How do I make a custom header?</span></h2>
<ul>
<li>Using GIMP (free to download) to make custom blog banner (via <a rel="nofollow" href="http://simplyamusingblog.blogspot.com/2008/07/how-to-add-banner-to-your-blog-using/" >Simply A Musing Blog</a>)</li>
<li>How to use PhotoShop or PhotoShop Elements to design a custom blog header (via <a href="http://www.designmom.com/2007/05/making-blog-banner-by-guest-mom-amy-m/" class="broken_link">DesignMom</a>)</li>
</ul>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingbasics101.com/2009/08/faqs-from-beginning-bloggers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Beginning Blogger Checklist: 5 Mistakes to Avoid When Starting a New Blog</title>
		<link>http://www.bloggingbasics101.com/2009/06/5-mistake-to-avoid-when-starting-a-new-blog/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://www.bloggingbasics101.com/2009/06/5-mistake-to-avoid-when-starting-a-new-blog/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 05:00:08 +0000</pubDate>
		<dc:creator>Melanie Nelson</dc:creator>
				<category><![CDATA[BB101 News]]></category>
		<category><![CDATA[Buttons/Banners/Graphics]]></category>
		<category><![CDATA[Content/Writing]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Linking]]></category>
		<category><![CDATA[beginning blogging]]></category>
		<category><![CDATA[blogging basics]]></category>
		<category><![CDATA[blogging don'ts]]></category>

		<guid isPermaLink="false">http://www.bloggingbasics101.com/?p=1159</guid>
		<description><![CDATA[Blogging Basics 101 explains 5 of the most common mistakes beginning bloggers make. These mistakes are almost a right of passage, but why waste that time with mistakes you can easily avoid?  
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Congratulations! You&#8217;ve decided to join the ranks of bloggers. You&#8217;re going to love it! Before you get too far into it, though, I&#8217;d like to help you avoid some common mistakes new bloggers make. These mistakes are almost a rite of passage, but why waste that time with mistakes you can easily avoid?</p>
<h3><strong>1.  Mistake: Auto-loading music. </strong></h3>
<p>Please. I beg you, your readers beg you: ditch the auto-loading music! Auto-loading music is not only annoying and surprising, but it&#8217;s a bandwidth hog. It makes your blog load slowly. Do you really want to lose a reader because she couldn&#8217;t wait for your site to load? And if she waits for your site to load, will she be annoyed because she didn&#8217;t know there would be music, had her speakers on high, and a sleeping husband (or child) right beside her? I can tell you this: She won&#8217;t be back.</p>
<h3><strong>2.  Mistake: Using a design with a dark background &amp; light text.</strong></h3>
<p>This issue is less about your aesthetic and more about usability and readability. Reading online is harder on our eyes than reading traditional paper. Using a dark background with light text makes it even harder on your readers&#8217; eyes.</p>
<h3><strong>3.  Mistake: Too much sidebar clutter.</strong></h3>
<p>A sleek, uncluttered design goes a long way with readers. The less clutter, the more space you have. You can use this white space to help lead your readers&#8217; eye toward specific content. Are you proud of your awards, badges, and various trinkets? That&#8217;s OK, those things are a right of passage too. You don&#8217;t have to get rid of them, but why not <a href="http://www.bloggingbasics101.com/2008/08/i-have-many-awa/"  target="_blank">put awards on their own page</a> and link to it from your main page? You&#8217;ll trade 20 links for just one link and de-clutter the sidebar. De-cluttering your sidebar eases navigation for your reader as well. When there are fewer items competing for your reader&#8217;s attention, they&#8217;ll be drawn to what&#8217;s important.</p>
<h3><strong>4.  Mistake: Accidental plagiarism (even with photos).</strong></h3>
<p>Very few legitimate bloggers plagiarize on purpose. Most likely a new blogger won&#8217;t realize what they&#8217;re doing. Plagiarism applies to using any content that isn&#8217;t originally yours, whether it&#8217;s content or photography or music or anything else. I&#8217;ll be honest and tell you that when I started blogging I would Google a picture, then copy it to my computer and use it in my blog post. That&#8217;s a big problem because it&#8217;s the same as plagiarism&#8211;even if I cited where I found the picture. I hadn&#8217;t asked the owner if I could use it, I just did it. If you&#8217;re new to blogging, take a minute to find out about and understand the issues of plagiarism and copyright. <a href="http://www.copyright.gov/fls/fl102.html" title="U.S. Copyright Office - Fair Use "  target="_self">U.S. Copyright Office bluntly says</a>: “Acknowledging the source of the copyrighted material does not substitute for obtaining permission.” These links will help you:</p>
<ul>
<li><a href="http://www.bloggingbasics101.com/2008/05/i-put-a-creativ/" >I put a Creative Commons license on my blog, but is my material truly protected?</a></li>
<li><a href="http://www.bloggingbasics101.com/2007/02/i-notice-that-m/" >I notice that many bloggers have something on their site telling people not to plagiarize, but how effective is it?</a></li>
<li><a href="http://www.bloggingbasics101.com/2008/06/a-few-more-link/" >A Few More Links for Copyright Information</a></li>
</ul>
<h3><strong>5.  Mistake: Using &#8220;click here&#8221; instead of keyword phrases for links.</strong></h3>
<p>I advise you to choose your links words carefully. When you are writing a post and need to insert a link, consider how you are going to write that sentence and where you will include the link. For example, which of these is more effective (potential links in bold)?</p>
<blockquote><p>If you are interested in hosting a giveaway, please review my <strong>vendor guidelines</strong>.</p>
<p>My vendor guidelines are available <strong>here</strong>.</p></blockquote>
<p>The top sentence is more effective for your audience because it tells them exactly what they need to do. It’s also effective for SEO purposes because search engine spiders are looking for unique word strings. Strings like “click here” or even just the word “here” linked to other files or pages are everywhere on the web. Make your pages stand out by being more descriptive with your links. Help the search engines catalog your site effectively.</p>
<p><small>Rubik&#8217;s Cube photo credit: <a href="http://creativecommons.org/licenses/by-nc-nd/2.0/" title="Attribution-NonCommercial-NoDerivs License"  target="_blank"><img src="http://www.bloggingbasics101.com/wp-content/plugins/photo-dropper/images/cc.png" border="0" alt="Creative Commons License" width="16" height="16" align="absmiddle" /></a> <a href="http://www.photodropper.com/photos/"  target="_blank">photo</a> credit: <a rel="nofollow" href="http://www.flickr.com/photos/46735786@N00/62946359/" title="wokka"  target="_blank">wokka</a></small></p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingbasics101.com/2009/06/5-mistake-to-avoid-when-starting-a-new-blog/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>How can I make a scroll box for HTML code?</title>
		<link>http://www.bloggingbasics101.com/2009/05/how-can-i-make-a-scroll-box-for-html-code/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://www.bloggingbasics101.com/2009/05/how-can-i-make-a-scroll-box-for-html-code/#comments</comments>
		<pubDate>Thu, 28 May 2009 05:00:27 +0000</pubDate>
		<dc:creator>Melanie Nelson</dc:creator>
				<category><![CDATA[Buttons/Banners/Graphics]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[button and HTML code]]></category>
		<category><![CDATA[HTML for sidebar]]></category>
		<category><![CDATA[scroll box]]></category>
		<category><![CDATA[scroll box for HTML]]></category>

		<guid isPermaLink="false">http://www.bloggingbasics101.com/?p=1477</guid>
		<description><![CDATA[Have you ever wanted to provide your readers with the code for a button or logo from your blog or web site? Now you can with an HTML scroll box!
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This post has been the most popular post at Blogging Basics 101 since I wrote it over a year ago. However, it&#8217;s also been the most confusing for my readers because it deals with HTML and how your blogging platform &amp; web browsers read that HTML. So I&#8217;m tweaking this post and re-posting in the hopes I can clarify these issues a little more.</p>
<p>Sometimes a blog will have a button on its sidebar with a box of HTML code underneath, similar to this:</p>
<p><img title="bb101 sidebar image" src="http://www.bloggingbasics101.com/images/bb101_125x125.jpg" alt="" width="125" height="125" /></p>
<div style="border: 3px solid green; overflow: auto; height: 100px; width: 125px; color: black; background-color: white;">&lt;a href=&#8221;http://www.bloggingbasics101.com&#8221;&gt;&lt;img src=&#8221;http://www.bloggingbasics101.com/images/bb101_125x125.jpg&#8221;/&gt;&lt;/a&gt;</div>
<p>You already know how to <a href="http://www.bloggingbasics101.com/2007/08/how-do-i-add-a-/" >put the button on your sidebar</a> and how to find and <a href="http://www.bloggingbasics101.com/2007/11/on-several-blog/" >display the HTML</a>. Now let&#8217;s put that HTML into a handy scroll box.</p>
<p>Below I will walk you through putting the code in your sidebar. First, though, I want to show you the code we&#8217;ll be using and explain how it works.</p>
<p>This is the code you&#8217;ll place in your sidebar:</p>
<p>&lt;img src=&#8221;http://www.bloggingbasics101.com/images/bb101_125x125.jpg&#8221;&gt;&lt;br/&gt;&lt;div style=&#8221;border: 3px solid green; overflow: auto; height: 100px; width: 125px; color: black; background-color: white;&#8221;&gt;<em><strong>YOUR TEXT HERE</strong></em>&lt;/div&gt;</p>
<p>This will show up as the button and then a box below with the HTML code (as you see above).</p>
<p>The &lt;div style=&#8221; &#8220;&gt; and &lt;/div&gt; are the opening and closing HTML tags you need to make the scroll box. Everything between the quotes in the &lt;div style&gt; tag tells the browser how to make the box appear on the screen. Let&#8217;s go through each of these items.</p>
<ul>
<li><strong>border:3px solid green</strong> &#8212; This tells the browser to make the box with a three pixel border in green. You can change the color by typing another color (e.g., red, orange, etc.) or you can change the line type by typing dashed or dotted.</li>
<li><strong>height:100px</strong> &#8212; This tells the browser to make the box 100 pixels tall. You can change this variable by typing a different number (e.g., 200). You can play around with this until you like the appearance.</li>
<li><strong>width:150px</strong> &#8212; This tells the browser to make the box 150 pixels wide. Again, you can control the width by typing in a different number.</li>
<li><strong>color:black</strong> &#8212; This is the color of the text within the box. You can type the name of any color here (e.g., red, orange, green, etc.).</li>
<li><strong>background-color:white </strong>&#8211; This is the color of the inside of your box. I encourage you to use black text on a white background as this is the easiest to read. However, you can change this color by simply typing another color name in place of <em>white</em>.</li>
</ul>
<p>Now that you understand how the tag works, let&#8217;s look at what HTML you need to put use to make the box reflect your personalized HTML. Instead of <strong><em>YOUR TEXT HERE</em></strong> you should type your HTML code. For example, if you are going to put the HTML for putting the BB101 button on your site it would look like this:</p>
<p>&lt;img src=&#8221;http://www.bloggingbasics101.com/images/bb101_125x125.jpg&#8221;&gt;&lt;br/&gt;&lt;div style=&#8221;border: 3px solid green; overflow: auto; height: 100px; width: 150px; color: black; background-color: white;&#8221;&gt;<strong>&amp;lt;</strong><strong>a href=&#8221;http://www.bloggingbasics101.com&#8221;</strong><strong>&amp;gt;</strong><strong>&amp;lt;</strong><strong>img src=&#8221;http://www.bloggingbasics101.com/images/bb101_125x125.jpg&#8221; /</strong><strong>&amp;gt;</strong><strong>&amp;lt;</strong><strong>/a</strong><strong>&amp;gt;</strong> &lt;/div&gt;</p>
<p>(Note that you don&#8217;t need the bold, I just added that for ease of seeing where your code goes. If you need more help with what code you&#8217;ll need, see this post on <a href="http://www.bloggingbasics101.com/2007/11/on-several-blog/" >HTML code for buttons</a>.)</p>
<p>If you&#8217;re at all familiar with HTML, you&#8217;ll notice that the code above does not have the regular &lt; and &gt; you usually see when inserting links and images. Your button code would normally look like this if you were typing it in your HTML compose tab:</p>
<p>&lt;a href=&#8221;http://www.bloggingbasics101.com&#8221;<strong>&gt;&lt;</strong>img src=&#8221;http://www.bloggingbasics101.com/images/bb101_125x125.jpg&#8221; /<strong>&gt;&lt;</strong>/a<strong>&gt;</strong></p>
<p>However, if you type the HTML above into the <strong>Compose</strong> tab or the <strong>Edit HTML</strong> tab, it is processed as HTML and will not show up properly for your readers (it will just show the button in the box instead of the HTML code). There <em>is</em> a work-around: Type <strong>&amp;lt;</strong> for every &lt; character and  <strong>&amp;gt; </strong>for every &gt; character. The code for your button HTML will look like this:</p>
<p><strong>&amp;lt;</strong>a href=&#8221;http://www.bloggingbasics101.com&#8221;<strong>&amp;gt;</strong><strong>&amp;lt;</strong>img src=&#8221;http://www.bloggingbasics101.com/images/bb101_125x125.jpg&#8221; /<strong>&amp;gt;</strong><strong>&amp;lt;</strong>/a<strong>&amp;gt;</strong></p>
<p>This works because <strong>&amp;lt;</strong> is the HTML code for the &lt; sign and <strong>&amp;gt;</strong> is the HTML for the &gt; sign. In other words, your editor and your browser will both read &amp;lt; as a &lt; character (and display it as such) and &amp;gt; as a &gt; character (and display it as such). Placing <strong>&amp;lt;</strong> in place of all &lt; and <strong>&amp;gt;</strong> in place of all &gt; will allow your raw HTML to show up in the box because it replaces the &lt; and &gt;. <strong>You&#8217;ll need to put &amp;lt; and &amp;gt; where ever there is an &lt; or &gt; in your code.</strong></p>
<p><strong>NOTE: Do not cut and paste the code from this article. It&#8217;s using so-called smart-quotes and those quotes won&#8217;t be recognized properly by your blogging platform&#8217;s editor or a web browser. You&#8217;ll need to either type in the code by hand or, if you choose to cut/paste, replace the quotes manually in your editor.</strong></p>
<p>There are other work arounds as well. You can try wrapping your snippet of code in the following tags:<br />
&lt;pre&gt; and &lt;/pre&gt; tags OR<br />
&lt;textarea&gt; and &lt;/textarea&gt; OR<br />
&lt;code&gt; and &lt;/code&gt;</p>
<p>Now, let&#8217;s put that code in your sidebar!</p>
<p><strong>TypePad</strong></p>
<p>In order to add the code to your sidebar, you will need to make a new Notes Typelist.</p>
<ol>
<li>Go to <strong>Typelists</strong> &gt; <strong>Create New Typelist</strong>.</li>
<li>Choose <strong>Notes</strong> for the List Type and give it a name.</li>
<li>Click <strong>Create New List</strong>.</li>
<li>In the <strong>Note</strong> field type copy and paste this code:&lt;div style=&#8221;border: 3px solid green; overflow: auto; height: 100px;<br />
width: 150px; color: black; background-color: white;&#8221;&gt;<strong><em>YOUR TEXT<br />
HERE</em></strong>&lt;/div&gt;</li>
<li>Click <strong>Save</strong>.</li>
<li>Click the <strong>Publish</strong> tab and choose which pages you want to put the scroll box on.</li>
<li>Click <strong>Save Changes</strong>.</li>
<li>To change where the scroll box appears, use the Content Order tool in your Design toolbox.</li>
</ol>
<p><strong>Blogger</strong></p>
<ol>
<li>Log in to Blogger.</li>
<li>Go to <strong>Layout</strong> &gt; <strong>Template</strong> &gt; <strong>Page Elements</strong> &gt; <strong>Add a Page Element</strong>.</li>
<li>Scroll down until you see <strong>HTML/Java Script</strong> and choose <strong>Add to Blog</strong>.</li>
<li>Cut and paste the following code into the Content field (you can leave the Title field blank):&lt;div style=&#8221;border: 3px solid green; overflow: auto; height: 100px;<br />
width: 150px; color: black; background-color: white;&#8221;&gt;<strong><em>YOUR TEXT<br />
HERE</em></strong>&lt;/div&gt;</li>
<li>Click <strong>Save Changes</strong>.</li>
<li>Preview your blog to see how it looks. Move the element around as needed (simply drag and drop with your mouse).</li>
<li>Click <strong>Save</strong>.</li>
</ol>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingbasics101.com/2009/05/how-can-i-make-a-scroll-box-for-html-code/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Choosing Movable Type as Your Blogging Platform</title>
		<link>http://www.bloggingbasics101.com/2009/03/choosing-movable-type-as-your-blogging-platform/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://www.bloggingbasics101.com/2009/03/choosing-movable-type-as-your-blogging-platform/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 08:00:44 +0000</pubDate>
		<dc:creator>Melanie Nelson</dc:creator>
				<category><![CDATA[Getting Started]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[choosing a blog platform]]></category>
		<category><![CDATA[movable type]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.bloggingbasics101.com/?p=1020</guid>
		<description><![CDATA[Movable Type is the self-hosted blog platform offered by SixApart (also owner of Typepad). Ostensibly, Movable Type is the equivalent of WordPress.org. Put simply: Both are non-hosted blogging platforms that allow you to tweak your own code. Movable Type, at one point several years ago, was set to be a &#8220;potential successor to the kingdom [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Movable Type is the self-hosted blog platform offered by SixApart (also owner of Typepad). Ostensibly, Movable Type is the equivalent of WordPress.org. Put simply: Both are non-hosted blogging platforms that allow you to tweak your own code.</p>
<p>Movable Type, at one point several years ago, was set to be a &#8220;<a href="http://burningbird.net/technology/movable-type-the-princess-time-forgot/" >potential successor to the kingdom of Blog, Blog Away</a>&#8220;. What happened, though, was WordPress came along and was truly open source. Users had been treating Movable Type as if it was open source, but Movable Type decided to enforce licensing&#8211;essentially making users pay for the privilege of using MT. These days Movable Type is once again free and offers an open source version.</p>
<p>The Princess at <a href="http://www.lizardkingdom.org" >Flooded Lizard Kingdom</a> is a user and lover of Movable Type and was kind enough to e-mail with me about why she likes the MT platform:</p>
<blockquote><p><em>I moved my personal blog, <a href="http://www.lizardkingdom.org" >Flooded Lizard Kingdom</a> from Blogger to Movable Type in October of 2003 because I wanted more control over my blog.  Movable Type is just as powerful and customizable as WordPress, and easily supports multiple blogs, which is one reason that I love it.  All my blogs are in one dashboard when I log in.</em></p></blockquote>
<p>In addition, she cites the following as reasons to use Movable Type instead of another platform:</p>
<ul>
<li>Movable Type&#8217;s template code separates content, function, and appearance more strictly than WordPress.</li>
<li>It&#8217;s fairly easy to customize the available styles with your own banner. (I think it&#8217;s important to note here that Movable Type has significantly fewer themes available than WordPress. This may be a consideration if you are considering this platform.)</li>
</ul>
<p>The Princess has written a thorough and thoughtful post called <a href="http://www.lizardkingdom.org/archives/2008/05/six_apart_doesnt_want_me_to_us.html" >Six Apart Doesn&#8217;t Want Me to Use or Recommend Movable Type (But I Do It Anyway)</a>. In it she discusses the pros and cons of using Movable Type as your blogging platform.</p>
<p>The <a href="http://blog.smartalyx.com/2009/01/23/movable-type-vs-wordpress/" >Smartalyx guys</a> have tried all the major online publishing systems (WordPress, Joomla, Drupal, Movable Type). Their recommendation? Why use Movable Type when the installation for the others is so easy and the communities are so open and accessible? Movable Type was not as easy to install as it seemed to be when reading the instructions:</p>
<blockquote><p><em>Installation seemed straight forward. Reading the directions anyways. The install itself was painful and overly complicated. Nothing worked quite the way it should and the instructions did not help much. Where WordPress has what they call “famous 5 minute guide”, I could not find a similar overview for Movable Type. I am familiar with creating sub-domains, databases and all that so those concepts are not foreign. . .Needless to say after multiple attempts it never worked.</em></p></blockquote>
<p>You can read more about their Twitter experience with <a href="http://www.twitter.com/SixApart" >@SixApart</a> (who own Movable Type and Typepad) in <a href="http://blog.smartalyx.com/2009/01/23/movable-type-vs-wordpress/" >Movable Type vs. WordPress</a>.</p>
<p>However, The Princess e-mailed me the following links that should help you with any problems you encounter when installing MT:</p>
<ul>
<li><a href="http://www.superxm.com/2007/08/movable-type-4-installation-step-by-step-with-screenshots.html" >Movable Type 4 Installation Step-by-Step With Screenshots</a></li>
<li><a href="http://forums.movabletype.org/" >Movable Type Forums</a></li>
</ul>
<h3>Tutorials</h3>
<p>It is true that Movable Type doesn&#8217;t have quite the expansive community of WordPress or number of tutorials to help new users. However, there are some excellent sites out there that can get you up and running.</p>
<p>BlogHer&#8217;s own Elise Bauer is a Movable Type guru and hosts a site (<a href="http://www.learningmovabletype.com/" >Learning Movable Type</a>) that can walk you through setting up your new blog at Movable Type or importing an existing blog. From the web site:</p>
<blockquote><p><em>Learning Movable Type (LMT) is a growing set of tutorials, presented in blog format, aimed at helping users of the Movable Type (MT) web publishing platform. These tutorials are geared for those with a good understanding of HTML, a fair understanding of CSS, but who are not necessarily programmers or web designers.</em></p></blockquote>
<p><a href="http://www.eatdrinksleepmovabletype.com/" >Eat, Drink, Sleep Movable Type</a> also offers discussions, tutorials, Plug-ins, and advice about using Movable Type to its fullest extent.</p>
<p>Related Posts:</p>
<ul>
<li><a href="http://www.bloggingbasics101.com/2009/01/choosing-a-blogging-platform/"  target="_blank">Choosing a Blogging Platform</a></li>
<li><a href="http://www.bloggingbasics101.com/2009/01/using-blogger-blogspot-as-your-blogging-platform/"  target="_blank">Using Blogger (Blogspot) as Your Blogging Platform</a></li>
<li><a href="http://www.bloggingbasics101.com/2009/01/choosing-typepad-as-your-blogging-platform/" >Choosing TypePad as Your Blogging Platform</a></li>
<li><a href="http://www.bloggingbasics101.com/2009/02/choosing-wordpress-as-your-blogging-platform/"  target="_blank">Choosing WordPress as Your Blogging Platform</a></li>
</ul>
<p><em>Special thanks to The Princess at <a href="http://www.lizardkingdom.org" >Flooded Lizard Kingdom</a> for taking the time to e-mail with me for this article.</em></p>
<p><em>This article is cross-posted at BlogHer.com (with subtle differences).<br />
</em></p>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingbasics101.com/2009/03/choosing-movable-type-as-your-blogging-platform/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How do you make a scroll box for HTML code? *Updated*</title>
		<link>http://www.bloggingbasics101.com/2009/02/how-do-you-make-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rss</link>
		<comments>http://www.bloggingbasics101.com/2009/02/how-do-you-make-2/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 08:00:00 +0000</pubDate>
		<dc:creator>Melanie Nelson</dc:creator>
				<category><![CDATA[Buttons/Banners/Graphics]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML conversion]]></category>
		<category><![CDATA[scroll box]]></category>
		<category><![CDATA[scroll box for HTML]]></category>

		<guid isPermaLink="false">http://www.bloggingbasics101.com/?p=188</guid>
		<description><![CDATA[This post has been the most popular post at Blogging Basics 101 since I wrote it over a year ago. However, it&#8217;s also been the most confusing for my readers because it deals with HTML and how your blogging platform &#38; web browsers read that HTML. So I&#8217;m tweaking this post and re-posting in the [...]
No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>This post has been the most popular post at Blogging Basics 101 since I wrote it over a year ago. However, it&#8217;s also been the most confusing for my readers because it deals with HTML and how your blogging platform &amp; web browsers read that HTML. So I&#8217;m tweaking this post and re-posting in the hopes I can clarify these issues a little more.</p>
<p>Sometimes a blog will have a button on its sidebar with a box of HTML code underneath, similar to this:</p>
<p><img title="bb101 sidebar image" src="http://www.bloggingbasics101.com/images/bb101_125x125.jpg" alt="" width="125" height="125" /></p>
<div style="border: 3px solid green; overflow: auto; height: 100px; width: 125px; color: black; background-color: white;">&lt;a href=&#8221;http://www.bloggingbasics101.com&#8221;&gt;&lt;img src=&#8221;http://www.bloggingbasics101.com/images/bb101_125x125.jpg&#8221;/&gt;&lt;/a&gt;</div>
<p>You already know how to <a href="http://www.bloggingbasics101.com/2007/08/how-do-i-add-a-/" >put the button on your sidebar</a> and how to find and <a href="http://www.bloggingbasics101.com/2007/11/on-several-blog/" >display the HTML</a>. Now let&#8217;s put that HTML into a handy scroll box.</p>
<p>Below I will walk you through putting the code in your sidebar. First, though, I want to show you the code we&#8217;ll be using and explain how it works.</p>
<p>This is the code you&#8217;ll place in your sidebar:</p>
<p>&lt;img src=&#8221;http://www.bloggingbasics101.com/images/bb101_125x125.jpg&#8221;&gt;&lt;br/&gt;&lt;div style=&#8221;border: 3px solid green; overflow: auto; height: 100px; width: 125px; color: black; background-color: white;&#8221;&gt;<em><strong>YOUR TEXT HERE</strong></em>&lt;/div&gt;</p>
<p>This will show up as the button and then a box below with the HTML code (as you see above).</p>
<p>The &lt;div style=&#8221; &#8220;&gt; and &lt;/div&gt; are the opening and closing HTML tags you need to make the scroll box. Everything between the quotes in the &lt;div style&gt; tag tells the browser how to make the box appear on the screen. Let&#8217;s go through each of these items.</p>
<ul>
<li><strong>border:3px solid green</strong> &#8212; This tells the browser to make the box with a three pixel border in green. You can change the color by typing another color (e.g., red, orange, etc.) or you can change the line type by typing dashed or dotted.</li>
<li><strong>height:100px</strong> &#8212; This tells the browser to make the box 100 pixels tall. You can change this variable by typing a different number (e.g., 200). You can play around with this until you like the appearance.</li>
<li><strong>width:150px</strong> &#8212; This tells the browser to make the box 150 pixels wide. Again, you can control the width by typing in a different number.</li>
<li><strong>color:black</strong> &#8212; This is the color of the text within the box. You can type the name of any color here (e.g., red, orange, green, etc.).</li>
<li><strong>background-color:white </strong>&#8211; This is the color of the inside of your box. I encourage you to use black text on a white background as this is the easiest to read. However, you can change this color by simply typing another color name in place of <em>white</em>.</li>
</ul>
<p>Now that you understand how the tag works, let&#8217;s look at what HTML you need to put use to make the box reflect your personalized HTML. Instead of <strong><em>YOUR TEXT HERE</em></strong> you should type your HTML code. For example, if you are going to put the HTML for putting the BB101 button on your site it would look like this:</p>
<p>&lt;img src=&#8221;http://www.bloggingbasics101.com/images/bb101_125x125.jpg&#8221;&gt;&lt;br/&gt;&lt;div style=&#8221;border: 3px solid green; overflow: auto; height: 100px; width: 150px; color: black; background-color: white;&#8221;&gt;<strong>&amp;lt;</strong><strong>a href=&#8221;http://www.bloggingbasics101.com&#8221;</strong><strong>&amp;gt;</strong><strong>&amp;lt;</strong><strong>img src=&#8221;http://www.bloggingbasics101.com/images/bb101_125x125.jpg&#8221; /</strong><strong>&amp;gt;</strong><strong>&amp;lt;</strong><strong>/a</strong><strong>&amp;gt;</strong> &lt;/div&gt;</p>
<p>(Note that you don&#8217;t need the bold, I just added that for ease of seeing where your code goes. If you need more help with what code you&#8217;ll need, see this post on <a href="http://www.bloggingbasics101.com/2007/11/on-several-blog/" >HTML code for buttons</a>.)</p>
<p>If you&#8217;re at all familiar with HTML, you&#8217;ll notice that the code above does not have the regular &lt; and &gt; you usually see when inserting links and images. Your button code would normally look like this if you were typing it in your HTML compose tab:</p>
<p>&lt;a href=&#8221;http://www.bloggingbasics101.com&#8221;<strong>&gt;&lt;</strong>img src=&#8221;http://www.bloggingbasics101.com/images/bb101_125x125.jpg&#8221; /<strong>&gt;&lt;</strong>/a<strong>&gt;</strong></p>
<p>However, if you type the HTML above into the <strong>Compose</strong> tab or the <strong>Edit HTML</strong> tab, it is processed as HTML and will not show up properly for your readers (it will just show the button in the box instead of the HTML code). There <em>is</em> a work-around: Type <strong>&amp;lt;</strong> HTML Code Here <strong>&amp;gt; </strong>. The code for your button HTML will look like this:</p>
<p><strong>&amp;lt;</strong>a href=&#8221;http://www.bloggingbasics101.com&#8221;<strong>&amp;gt;</strong><strong>&amp;lt;</strong>img src=&#8221;http://www.bloggingbasics101.com/images/bb101_125x125.jpg&#8221; /<strong>&amp;gt;</strong><strong>&amp;lt;</strong>/a<strong>&amp;gt;</strong></p>
<p>(Note: The bold isn&#8217;t necessary, it&#8217;s just my way of showing you where I&#8217;ve inserted the &amp;lt; and &amp;gt;)</p>
<p>This works because <strong>&amp;lt;</strong> is the HTML code for the &lt; sign and <strong>&amp;gt;</strong> is the HTML for the &gt; sign. Placing <strong>&amp;lt;</strong> in place of all &lt; and <strong>&amp;gt;</strong> in place of all &gt; will allow your raw HTML to show up because it replaces the &lt; and &gt;. <strong>You&#8217;ll need to put &amp;lt; and &amp;gt; where ever there is an &lt; or &gt; in your code.</strong></p>
<p>There are other work arounds as well. You can try wrapping your snippet of code in the following tags:<br />
&lt;pre&gt; and &lt;/pre&gt; tags OR<br />
&lt;textarea&gt; and &lt;/textarea&gt; OR<br />
&lt;code&gt; and &lt;/code&gt;</p>
<p>Now, let&#8217;s put that code in your sidebar!</p>
<p><strong>TypePad</strong></p>
<p>In order to add the code to your sidebar, you will need to make a new Notes Typelist.</p>
<ol>
<li>Go to <strong>Typelists</strong> &gt; <strong>Create New Typelist</strong>.</li>
<li>Choose <strong>Notes</strong> for the List Type and give it a name.</li>
<li>Click <strong>Create New List</strong>.</li>
<li>In the <strong>Note</strong> field type copy and paste this code:&lt;div style=&#8221;border: 3px solid green; overflow: auto; height: 100px;<br />
width: 150px; color: black; background-color: white;&#8221;&gt;<strong><em>YOUR TEXT<br />
HERE</em></strong>&lt;/div&gt;</li>
<li>Click <strong>Save</strong>.</li>
<li>Click the <strong>Publish</strong> tab and choose which pages you want to put the scroll box on.</li>
<li>Click <strong>Save Changes</strong>.</li>
<li>To change where the scroll box appears, use the Content Order tool in your Design toolbox.</li>
</ol>
<p><strong>Blogger</strong></p>
<ol>
<li>Log in to Blogger.</li>
<li>Go to <strong>Layout</strong> &gt; <strong>Template</strong> &gt; <strong>Page Elements</strong> &gt; <strong>Add a Page Element</strong>.</li>
<li>Scroll down until you see <strong>HTML/Java Script</strong> and choose <strong>Add to Blog</strong>.</li>
<li>Cut and paste the following code into the Content field (you can leave the Title field blank):&lt;div style=&#8221;border: 3px solid green; overflow: auto; height: 100px;<br />
width: 150px; color: black; background-color: white;&#8221;&gt;<strong><em>YOUR TEXT<br />
HERE</em></strong>&lt;/div&gt;</li>
<li>Click <strong>Save Changes</strong>.</li>
<li>Preview your blog to see how it looks. Move the element around as needed (simply drag and drop with your mouse).</li>
<li>Click <strong>Save</strong>.</li>
</ol>
<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.bloggingbasics101.com/2009/02/how-do-you-make-2/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
	</channel>
</rss>

