<?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>the pixel boutique &#124; blog design services, tips &#38; tutorials &#187; Q &amp; A</title>
	<atom:link href="http://www.thepixelboutique.com/category/q-a/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thepixelboutique.com</link>
	<description>blog design services, tips &#38; tutorials</description>
	<lastBuildDate>Fri, 30 Jul 2010 00:36:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Q &amp; A: Adding a Third Column in Blogger</title>
		<link>http://www.thepixelboutique.com/2009/04/q-a-adding-a-third-column-in-blogger/</link>
		<comments>http://www.thepixelboutique.com/2009/04/q-a-adding-a-third-column-in-blogger/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 17:37:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Q & A]]></category>
		<category><![CDATA[how to's]]></category>
		<category><![CDATA[adding third column]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[third column]]></category>
		<category><![CDATA[three column]]></category>

		<guid isPermaLink="false">http://www.apronstringsaflutter.com/thepixelboutique/?p=307</guid>
		<description><![CDATA[Its time for another answer edition of Q &#38; A here on this ol&#8217; blog. Da Da D&#8217; Daaaaaaa! Today&#8217;s question comes from Kris of Vintage Window. She asks: In Blogger, how do I get a sidebar on both sides of my blog entries? Kris, that is something that I&#8217;ve done a lot of for [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.apronstringsaflutter.com/thepixelboutique/wp-content/uploads/2009/01/qandalogo.gif"><img class="aligncenter size-full wp-image-126" title="qandalogo" src="http://www.apronstringsaflutter.com/thepixelboutique/wp-content/uploads/2009/01/qandalogo.gif" alt="qandalogo" width="125" height="123" /></a></p>
<p style="text-align: left;">Its time for another answer edition of Q &amp; A here on this ol&#8217; blog.</p>
<p style="text-align: left;">Da Da D&#8217; Daaaaaaa!</p>
<p style="text-align: left;">Today&#8217;s question comes from Kris of <a href="http://vintagewindow.blogspot.com/" target="_blank">Vintage Window</a>. She asks:</p>
<p style="text-align: left;"><em><strong>In Blogger, how do I get a sidebar on both sides of my blog entries?</strong></em></p>
<p style="text-align: left;">Kris, that is something that I&#8217;ve done a lot of for clients who are moving to a three column format because their sidebar real estate is getting scarce. With more and more people doing affiliate advertising, there is need for more column space. However, for some reason, Blogger has yet to offer 3-column templates.</p>
<p style="text-align: left;">Its not hard to do but you have to be willing to roll up your sleeves and get dirty with code. You also need to temporarily become a Type-A, very, very detail oriented person for a few minutes.</p>
<p style="text-align: left;">So ready to start? Go grab your cup of coffee and throw a 30 minute Barney video in the DVD player (it&#8217;ll be more than enough time)&#8230;</p>
<p style="text-align: left;"><span style="color: #000000;"><strong>(Please note: </strong></span>This guide is one of the many that are out there on the internet. But since this is a popular question, I decided to join the ranks of some pretty smart cookies. There are also full templates you can download&#8230;which you can find with a simple Google search. <strong>This guide tells you how to add a third column to the Minima Theme.</strong> Other guides are available for the other themes.)</p>
<p style="text-align: left;">1. Before you do any change in the code, its always a good idea to <strong>backup your template</strong>. To do so, go to <strong>Layout</strong>, then <strong>Edit HTML</strong>, then <strong>Download Full Template</strong>. This will download an XML file of your template to your hard drive.</p>
<p style="text-align: left;">2. Next, you&#8217;ll want to go to <strong>Pick a New Template</strong> and select the <strong>Minima Theme</strong>. (As I mentioned above, there are other guides around that tell you how to add a third column to other themes.) <strong>Save</strong> your template.</p>
<p style="text-align: left;">3. Go back to to <strong>Edit HTML</strong> and scroll down to the code, under <strong>Edit Template</strong>.</p>
<p style="text-align: left;">4. Scroll down about 1/3 of the way until you see this code:</p>
<p>#sidebar-wrapper {<br />
width: 220px;<br />
float: $endSide;<br />
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */<br />
overflow: hidden;      /* fix for long non-text content breaking IE sidebar float */<br />
}</p>
<p><strong>Copy this whole piece of code (above) and paste it right after itself.</strong></p>
<p>Rename the copied code &#8220;<strong><span style="color: #ff0000;">#leftsidebar-wrapper</span></strong>&#8220;, because this new sidebar is going to be your left sidebar.</p>
<p>5. Now you need to <strong>adjust the width and float settings</strong> on some &#8220;wrappers&#8221;.  Scroll up a bit to the &#8216;#outer-wrapper&#8217;. A typical layout should look like this:</p>
<p>#outer-wrapper {<br />
<span style="color: #ff0000;"><strong>width: 900px;</strong></span><br />
margin:0 auto;<br />
padding:10px;<br />
text-align:$startSide;<br />
font: $bodyfont;<br />
}</p>
<p>#main-wrapper {<br />
<strong> <span style="color: #ff0000;">width: 450px;</span><span style="color: #ff0000;"><br />
margin-left: 25px;</span></strong><br />
<strong><span style="color: #ff0000;">float: left;</span></strong><br />
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */<br />
overflow: hidden;     /* fix for long non-text content breaking IE sidebar float */<br />
}</p>
<p>#sidebar-wrapper {<br />
<span style="color: #ff0000;"><strong>width: 200px;</strong><br />
</span> <strong><span style="color: #ff0000;">float: right;</span></strong><br />
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */<br />
overflow: hidden;      /* fix for long non-text content breaking IE sidebar float */<br />
}</p>
<p>#leftsidebar-wrapper {<br />
<span style="color: #ff0000;"><strong>width: 200px;<br />
float: left;<br />
</strong></span>word-wrap: break-word; /* fix for long text breaking sidebar float in IE */<br />
overflow: hidden;      /* fix for long non-text content breaking IE sidebar float */<br />
}</p>
<p>6. Scroll down to the almost very bottom of the code and find this:</p>
<p>&lt;div id=&#8217;main-wrapper&#8217;&gt;<br />
&lt;b:section class=&#8217;main&#8217; id=&#8217;main&#8217; showaddelement=&#8217;no&#8217;&gt;<br />
&lt;b:widget id=&#8217;Blog1&#8242; locked=&#8217;true&#8217; title=&#8217;Blog Posts&#8217; type=&#8217;Blog&#8217;/&gt;<br />
&lt;/b:section&gt;<br />
&lt;/div&gt;</p>
<p>Now is where you decide if you want the <strong>main column in the middle <span style="text-decoration: underline;">or</span> on the left</strong>. If you want the main column in the middle, paste the following piece of code <strong>above</strong> the &#8216;main-wrapper&#8217; code:</p>
<p>&lt;div id=&#8221;leftsidebar-wrapper&#8221;&gt;<br />
&lt;b:section class=&#8221;sidebar&#8221; id=&#8221;leftsidebar&#8221; preferred=&#8221;yes&#8221;&gt;<br />
&lt;b:widget id=&#8221;HTML2&#8243; locked=&#8221;false&#8221; title=&#8221;Adding a 3rd Column in Blogger&#8221; type=&#8221;HTML&#8221;/&gt;<br />
&lt;/b:section&gt;<br />
&lt;/div&gt;</p>
<p>If you want the main column on the left, paste that code <strong>below</strong> the &#8216;main-wrapper&#8217; code.</p>
<p>7. Lastly, you need to <strong>reset the header and footer width</strong> since we changed the column widths. Near the top, scroll to this code:</p>
<p>#header-wrapper {<br />
width:660px;<br />
margin:0 auto 10px;<br />
border:1px solid $bordercolor;<br />
}</p>
<p>Now change the width to the same width you used in the &#8216;#outer-wrapper&#8217;, in this case, 900px.</p>
<p>#header-wrapper {<br />
<span style="color: #ff0000;"><strong>width:900px;</strong></span><br />
margin:0 auto 10px;<br />
border:1px solid $bordercolor;<br />
}</p>
<p>Scroll down near the bottom again to this code:</p>
<p>#footer {<br />
width:660px;<br />
clear:both;<br />
margin:0 auto;<br />
padding-top:15px;<br />
line-height: 1.6em;<br />
text-transform:uppercase;<br />
letter-spacing:.1em;<br />
text-align: center;<br />
}</p>
<p>And change to:</p>
<p>#footer {<br />
<strong><span style="color: #ff0000;"> width:900px;</span><br />
</strong> clear:both;<br />
margin:0 auto;<br />
padding-top:15px;<br />
line-height: 1.6em;<br />
text-transform:uppercase;<br />
letter-spacing:.1em;<br />
text-align: center;<br />
}</p>
<p>8. Click <strong>Preview</strong> and <strong>Save Template</strong> if everything looks good.</p>
<p>(Note: If you get an error message when you try to preview your blog, change the following code from step 6 to read &#8216;HTML3&#8242; or 4 or 5&#8230;you can&#8217;t have duplicated widget ids. If you already have HTML widgets in your current layout, you have to use a unique number):</p>
<p>&lt;div id=&#8221;leftsidebar-wrapper&#8221;&gt;<br />
&lt;b:section class=&#8221;sidebar&#8221; id=&#8221;leftsidebar&#8221; preferred=&#8221;yes&#8221;&gt;<br />
&lt;b:widget id=<strong><span style="color: #ff0000;">&#8220;HTML3&#8243;</span></strong> locked=&#8221;false&#8221; title=&#8221;Adding a 3rd Column in Blogger&#8221; type=&#8221;HTML&#8221;/&gt;<br />
&lt;/b:section&gt;<br />
&lt;/div&gt;</p>
<p>Not that wasn&#8217;t so bad was it? You are now officially a geek.</p>
<p>Any questions?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thepixelboutique.com/2009/04/q-a-adding-a-third-column-in-blogger/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Q &amp; A: Creating Header Links In Blogger</title>
		<link>http://www.thepixelboutique.com/2009/03/q-a-creating-header-links-in-blogger/</link>
		<comments>http://www.thepixelboutique.com/2009/03/q-a-creating-header-links-in-blogger/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 15:28:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogger (Blogspot)]]></category>
		<category><![CDATA[Q & A]]></category>
		<category><![CDATA[blog design]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[blogspot]]></category>
		<category><![CDATA[eight crazy]]></category>
		<category><![CDATA[header links]]></category>
		<category><![CDATA[q&a]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://www.apronstringsaflutter.com/thepixelboutique/?p=280</guid>
		<description><![CDATA[Today I&#8217;m tackeling a question from Lissa. She asked: How do you make target links in the header &#8211; an example of what I mean is http://eightcrazy.blogspot.com/ Well Lissa, in the world of web design, there seems to always be 1000 ways to do the same thing. One person will use one method, while another [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.apronstringsaflutter.com/thepixelboutique/wp-content/uploads/2009/01/qandalogo.gif"><img class="aligncenter size-full wp-image-126" title="qandalogo" src="http://www.apronstringsaflutter.com/thepixelboutique/wp-content/uploads/2009/01/qandalogo.gif" alt="qandalogo" width="125" height="123" /></a></p>
<p style="text-align: left;">Today I&#8217;m tackeling a question from Lissa. She asked:</p>
<p style="text-align: left;"><em><strong>How do you  make target links in the header &#8211; an example of what I mean is <a rel="nofollow" href="http://eightcrazy.blogspot.com/" target="_blank">http://eightcrazy.blogspot.com/</a></strong></em></p>
<p style="text-align: left;">Well Lissa, in the world of web design, there seems to always be 1000 ways to do the same thing. One person will use one method, while another person will use another. There are design standards, but within that, there is some freedom and flexibility.</p>
<p style="text-align: center;"><a href="http://www.apronstringsaflutter.com/thepixelboutique/wp-content/uploads/2009/03/eightcrazy.jpg"><img class="aligncenter size-full wp-image-281" title="eightcrazy" src="http://www.apronstringsaflutter.com/thepixelboutique/wp-content/uploads/2009/03/eightcrazy.jpg" alt="eightcrazy" width="350" height="126" /></a></p>
<p style="text-align: left;">I think from looking at <a href="http://eightcrazy.blogspot.com/" target="_blank">eightcrazy</a>&#8216;s source code (btw, you know you can peek at someone&#8217;s source code by right-clicking on the page and selecting &#8220;view page source&#8221;, don&#8217;t you? Its super handy.) that she did a lot of template customization (and btw again&#8230;Shannon of Eight Crazy is a super talented designer and all-around cool gal! Check &#8216;er out.).</p>
<p style="text-align: left;">She probably started with a basic Blogger template and went into &#8220;Layout&#8221; and &#8220;Edit HTML&#8221; and tweaked to her heart&#8217;s content. My other guess is that she did what&#8217;s called &#8220;slicing&#8221; on her header when she created it in Photoshop. She divided her header into four sections, using a very clever design. (sorry Shannon&#8230;I hope I&#8217;m not giving away all your secrets!). Within Photoshop, there is a &#8220;slice&#8221; tool that divides your design into smaller pieces and creates images from them. In her HTML code, she arranged her slices, wrapped them in anchor tags ( &lt;a href=&#8221;yoururl.html&#8221;&gt; ) and thus created a full header.</p>
<p style="text-align: left;">Eightcrazy is a great example of what you can do with a little creativity and coding. Blogger offers a good starting point for people who just want to set up a basic blog and start writing. But there are also a lot of customization capabilities built in if you dig around a little bit. Here are a few resources I use when working with Blogger:</p>
<p style="text-align: left;"><a href="http://tips-for-new-bloggers.blogspot.com/" target="_blank">http://tips-for-new-bloggers.blogspot.com/</a></p>
<p style="text-align: left;"><a href="http://www.bloggertipsandtricks.com/" target="_blank">http://www.bloggertipsandtricks.com/</a></p>
<p style="text-align: left;"><a href="http://bloggerfordummies.blogspot.com/" target="_blank">http://bloggerfordummies.blogspot.com/</a></p>
<p style="text-align: left;">Hope that answers your question, Lissa. Thank you, Shannon for providing today&#8217;s visual aid! <img src='http://www.thepixelboutique.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.thepixelboutique.com/2009/03/q-a-creating-header-links-in-blogger/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Q &amp; A: Photo Hosting Options</title>
		<link>http://www.thepixelboutique.com/2009/03/q-a-photo-hosting-options/</link>
		<comments>http://www.thepixelboutique.com/2009/03/q-a-photo-hosting-options/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 14:00:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Q & A]]></category>
		<category><![CDATA[blogging questions]]></category>
		<category><![CDATA[blogging tips]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[photo hosting]]></category>
		<category><![CDATA[photo hosting services]]></category>
		<category><![CDATA[photo sharing]]></category>
		<category><![CDATA[photobucket]]></category>
		<category><![CDATA[snapfish]]></category>

		<guid isPermaLink="false">http://www.apronstringsaflutter.com/thepixelboutique/?p=249</guid>
		<description><![CDATA[Thanks to all who entered my Q &#38; A Twitter design giveaway a few weeks ago. You all gave me some great material, and helped me learn what people really want to know when it comes to blogging. The first question comes from Liz at Goddess In Progress (who has a fabulous blog about raising [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.apronstringsaflutter.com/thepixelboutique/wp-content/uploads/2009/01/qandalogo.gif"><img class="aligncenter size-full wp-image-126" title="qandalogo" src="http://www.apronstringsaflutter.com/thepixelboutique/wp-content/uploads/2009/01/qandalogo.gif" alt="qandalogo" width="125" height="123" /></a></p>
<p>Thanks to all who entered my Q &amp; A Twitter design giveaway a few weeks ago. You all gave me some great material, and helped me learn what people really want to know when it comes to blogging.</p>
<p>The first question comes from Liz at <a href="http://www.goddessinprogressblog.com/" target="_blank">Goddess In Progress</a> (who has a fabulous blog about raising twins!). Liz asked:</p>
<blockquote><p><em>What do you think are the pros and cons to using a photo hosting service like Flickr or Photobucket, versus just uploading them to your hosting provider, be it your own domain or something like Blogger?</em></p></blockquote>
<p>Well Liz, that&#8217;s a great question and I had to do some Googling because my first thought would be to say there&#8217;s no difference. Let me share with you what I found out.</p>
<p>There are several good options for free photo hosting services. <a href="http://photobucket.com/" target="_blank">PhotoBucket</a>, <a href="http://flickr.com" target="_blank">Flickr</a>, <a href="http://webshots.com" target="_blank">Webshots</a>, <a href="http://snapfish.com" target="_blank">SnapFish</a> and <a href="http://shutterfly.com" target="_blank">ShutterFly</a> are just a few of the many options on the web today. There are several advantages to using a photo sharing service.</p>
<p><strong>1. They&#8217;re free. </strong>This may be a mute point, because if you have a blog, you already have free hosting or paid hosting. However, if for some reason you had a limited amount of space and a lot of photos, it might be helpful to host them elsewhere.</p>
<p><strong>2. Editing features.</strong> A lot of people don&#8217;t own the latest, costly, version of PhotoShop. One great feature of these services is the photo editing capabilities that come with them. You are able to make some simple changes to your photos after uploading&#8230;for free! You can crop, change contrast/brightness, etc. This is a great option for bloggers.</p>
<p><strong>3. Extra exposure.</strong> If your photos are a big part of your blogging practices, its probably beneficial to have them on a photo sharing service that will increase your exposure and traffic. You can add tags to your photos and gain that much more visible for yourself and your blog.</p>
<p><strong>4. Sharing.</strong> This is somewhat related to the above point, but its handy to have your photos already hosted on a sharing/hosting site so you can share them with family, order prints or design photo gifts. I&#8217;ve used SnapFish for years for this very reason.</p>
<p>Now, two Cons&#8230;that aren&#8217;t really cons. I initially was going to caution you about the fact that most services are open to anyone and your photos can be copied and used without your permission. But as any blogger knows, you take on this risk the minute you add your first photo to a post. The best bet for protecting yourself and your photos is to add a personal watermark. A great example of this is what Beth at <a href="http://ishouldbefoldinglaundry.com" target="_blank">I Should be Folding Laundry</a> does with hers. She has a <a href="http://www.bethfletcherphotography.com/" target="_blank">photography business</a> and obviously doesn&#8217;t want her beautiful pictures used without her permission. She adds a tasteful watermark to her photos in a non-distracting way.</p>
<p>Lastly, one may think that there is risk of a photo hosting server going down and your photos not being available when needed. But again, its a mute point. Servers are servers and they all have the potential to go down at some point.</p>
<p>Liz, hope that somewhat answers your question&#8230;in a long winded sort of way!</p>
<p>So what are your thought on photo hosting services? Have a favorite? Something to add?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thepixelboutique.com/2009/03/q-a-photo-hosting-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Q &amp; A and a Giveaway&#8230;{that rhymes}.</title>
		<link>http://www.thepixelboutique.com/2009/02/q-a-and-a-giveawaythat-rhymes/</link>
		<comments>http://www.thepixelboutique.com/2009/02/q-a-and-a-giveawaythat-rhymes/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 19:16:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Q & A]]></category>
		<category><![CDATA[blog answers]]></category>
		<category><![CDATA[blog design]]></category>
		<category><![CDATA[blog questions]]></category>
		<category><![CDATA[giveaway]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter design]]></category>

		<guid isPermaLink="false">http://www.apronstringsaflutter.com/thepixelboutique/?p=226</guid>
		<description><![CDATA[**Update: Winner of the Twitter background design is Kris!** Today I&#8217;m kicking off another round of Q &#38; A on this here blog of mine&#8230;but with a little twist. Here&#8217;s the skinny: Ask any question related to the mechanics or technical aspects of blogging in the form of a comment. It can be anything from [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.apronstringsaflutter.com/thepixelboutique/wp-content/uploads/2009/01/qandalogo.gif"><img class="size-full wp-image-126 aligncenter" title="qandalogo" src="http://www.apronstringsaflutter.com/thepixelboutique/wp-content/uploads/2009/01/qandalogo.gif" alt="qandalogo" width="125" height="123" /></a></p>
<p style="text-align: left;">**Update: Winner of the Twitter background design is <a href="http://vintagewindow.blogspot.com/" target="_blank">Kris</a>!**</p>
<p style="text-align: left;">Today I&#8217;m kicking off another round of Q &amp; A on this here blog of mine&#8230;but with a little twist.</p>
<p>Here&#8217;s the skinny: Ask any question related to the mechanics or technical aspects of blogging in the form of a comment. It can be anything from how to add a custom banner, uploading a photo, adding a WordPress plugin, domain names, hosting&#8230;whatever. I&#8217;ll be back in the following weeks to answer your questions to the best of my ability.</p>
<p>And the best part? Your comment will enter you to <strong>win a Twitter background design</strong>&#8230;like <a href="http://twitter.com/MaternalSpark" target="_blank">this one</a> or <a href="http://www.twitter.com/redclaydiaries" target="_blank">this one</a>, or even <a href="http://twitter.com/myapronstrings" target="_blank">this one</a>. If you aren&#8217;t on Twitter (say what??), we&#8217;ll come up with something (maybe a mommy/business card or blog badge?)</p>
<p>Please submit your entries before Wednesday, March 4th at midnight.</p>
<p>So&#8230;ask away.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thepixelboutique.com/2009/02/q-a-and-a-giveawaythat-rhymes/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>BlissDom Q &amp; A: Your Burning Questions Answered!</title>
		<link>http://www.thepixelboutique.com/2009/02/blissdom-q-a-your-burning-questions-answered/</link>
		<comments>http://www.thepixelboutique.com/2009/02/blissdom-q-a-your-burning-questions-answered/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 20:47:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Q & A]]></category>
		<category><![CDATA[blissdom]]></category>
		<category><![CDATA[blissdom09]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[question and answer]]></category>

		<guid isPermaLink="false">http://www.apronstringsaflutter.com/thepixelboutique/?p=215</guid>
		<description><![CDATA[Last week I asked you if you wanted to know anything about my experience at BlissDom &#8217;09. A few of you chirped up&#8230;so here goes! Nicole Feliciano asked: Did you come away with ideas that will REALISTICALLY and DRAMATICALLY increase readership? My Answer: Yes, definitely. But dramatically? That may be hard to measure. Though readership/stats [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I asked you if you wanted to know anything about my experience at BlissDom &#8217;09. A few of you chirped up&#8230;so here goes!</p>
<p><strong><a href="http://momtrends.blogspot.com/" target="_blank">Nicole Feliciano</a> asked: </strong></p>
<p><em>Did you come away with ideas that will REALISTICALLY and DRAMATICALLY increase readership?</em></p>
<p><strong>My Answer:</strong></p>
<p>Yes, definitely. But dramatically? That may be hard to measure. Though readership/stats are not an exact science, I know that the right people were on the job when it came to sharing great tips for increasing readership. Some of those tips were:</p>
<p><strong>Use social media</strong>, like Twitter and Facebook, to your advantage. Build community, promote your blog and find new opportunities in that way.</p>
<p><strong>Comment, comment, comment</strong>. Nothing builds community like commenting on others&#8217; blogs. Being part of carnivals (my own tip) is a great way to increase your exposure and find some great blogs.</p>
<p><strong>Respond to comments</strong>. As much as it is possible, especially in the beginning, respond to your commenters. Visit their blogs and make a point to say something about their blog. Find a way to connect, even if its something small.</p>
<p><strong>Label your photos</strong>. In a very practical way, you can increase your Google search results by naming the images you use in your post something meaningful. Don&#8217;t just leave it as &#8220;img_20744&#8243;. Name it &#8220;BlissDom 09 tips and tricks to increase readership&#8221;. Google likes that&#8230;and so might you.</p>
<p>And finally, <strong>write good content</strong>. People will come back, and spread the word, if you offer something they like. This may be the hardest of all, in my opinion. But it makes the most sense, wouldn&#8217;t you agree?</p>
<p><strong>Nicole also asked:</strong></p>
<p><em>Can you compare it to Blogher?</em></p>
<p><strong>My answer:</strong></p>
<p>Gosh, that&#8217;s hard. It was different in so many way. Here&#8217;s my personal take (so don&#8217;t throw me under the bus!):</p>
<p>BlogHer was in San Fransisco&#8230;BlissDom in Nashville.</p>
<p>BlogHer had over 1,000 attendees&#8230;BlissDom had 250.</p>
<p>BlogHer appealed to a wider variety of bloggers (political, entertainment, etc.)&#8230;BlissDom seemed to appeal more to mommy, craft, tip bloggers.</p>
<p>BlogHer focused a lot on being free to express yourself however you wish because its your blog&#8230;BlissDom focused more on finding your niche and writing good, appealing content.</p>
<p>BlogHer didn&#8217;t emphasis social media *as much* as BlissDom did (and perhaps that was the difference that 8 months makes).</p>
<p>BlogHer did a good job (as much as I hated it) of making you meet new people with mixers, little games, etc&#8230;.BlissDom left that up to the person, in a way.</p>
<p>The panels at BlogHer seemed to get off topic with so many questions from the attendees&#8230;BlissDom had success in staying on topic with good information while still taking questions from people.</p>
<p><strong><a href="http://chocolatefingerprints.net/" target="_blank">Andrea McMann</a> asked:</strong></p>
<p><em>Have they released the time and venue for next year’s Blissdom? What’s your best tip (or best tips) for getting the most out of a blog conference experience?</em></p>
<p><strong>My Answer:</strong></p>
<p>Just this morning I got an email asking for my feedback on the conference. There was &#8220;talk&#8221; about having it twice a year, in October and February, most likely in Nashville. They also asked our opinion on if they were to increase the attendance, what a good cap would be. This year they kept the attendance at 250 people. That made it such a nice size&#8230;big enough that it was worthwhile but small enough that it was still somewhat intimate.</p>
<p>So&#8230;they may be opening it up to more people next year, and I&#8217;ll be it will go fast. You can sign up for the &#8217;10 conference updates <a href="https://www.mynewsletterbuilder.com/tools/subscription.php?username=takesoneboss" target="_blank">here</a>. That way, you&#8217;ll be in the know for next year!</p>
<p>As for getting the most out of the experience, I would have to say to attend every session, ask questions, walk up to people you want to meet (something I need to be better at) and just be involved with what&#8217;s going on. Honestly, there were a few things I skipped out on because I was just plain tired and needed some down time. That&#8217;s probably one thing I would do differently for next year.</p>
<p><strong>And last but not least, <a href="http://mrsfussypants.com/" target="_blank">Mrs. Fussypants</a> herself (um, hello????) asked:</strong></p>
<p>What do we need to concentrate on for next year?</p>
<p><strong>My answer:</strong></p>
<p>{<em>Gulp</em>}</p>
<p>I think keeping the venue small, like this year, really lends itself to a better conference experience. As the popularity and &#8220;buzz&#8221; about BlissDom grows, I hope that the dedication to the intimate setting remains. And if you can come up with some fun, creative, non-dorky mixer games, that would be icing on the cake&#8230; (if they even exist).</p>
<p><strong>She also asks:<br />
</strong></p>
<p><em>What *one* thing stood out to make the weekend special for you</em></p>
<p><strong>My answer:</strong></p>
<p>It was obvious the amount of time and planning that went into the planning of this conference. The logistics, Hotel Preston (minus the possessed elevators&#8230;), was just right for the amount of people; the session topics and panelists were right on, the special guests were a definite plus, the sponsors and &#8220;swag&#8221; was over the top. Everything down to the smallest detail was obviously planned with the attendee in mind, and that made the experience as a whole very positive.</p>
<p>I hope this was helpful. If you want more, you can now download the transcripts from the sessions and the key note speech from Jen Lancaster! <a href="http://blissdomconference.com/transcripts/" target="_blank">Check it out</a>&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thepixelboutique.com/2009/02/blissdom-q-a-your-burning-questions-answered/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Q &amp; A Kickoff</title>
		<link>http://www.thepixelboutique.com/2009/01/q-a-kickoff/</link>
		<comments>http://www.thepixelboutique.com/2009/01/q-a-kickoff/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 04:21:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Q & A]]></category>
		<category><![CDATA[blog questions]]></category>
		<category><![CDATA[blogging 101]]></category>
		<category><![CDATA[blogging q & a]]></category>
		<category><![CDATA[blogging tips]]></category>
		<category><![CDATA[new bloggers]]></category>

		<guid isPermaLink="false">http://www.apronstringsaflutter.com/thepixelboutique/?p=125</guid>
		<description><![CDATA[When I first started blogging I was O.Ver.Whelmed. There is just so much to learn, so many styles, so many choices to make. I&#8217;m still navigating my way around sometimes and don&#8217;t know that one can ever learn all there is to know about blogging because something new is always on the horizon. Even with [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.apronstringsaflutter.com/thepixelboutique/wp-content/uploads/2009/01/qandalogo.gif"><img class="size-full wp-image-126 aligncenter" title="qandalogo" src="http://www.apronstringsaflutter.com/thepixelboutique/wp-content/uploads/2009/01/qandalogo.gif" alt="qandalogo" width="125" height="123" /></a></p>
<p>When I first started blogging I was O.Ver.Whelmed. There is just so much to learn, so many styles, so many choices to make. I&#8217;m <em>still</em> navigating my way around sometimes and don&#8217;t know that one can ever learn all there is to know about blogging because something new is always on the horizon.</p>
<p>Even with 15 years experience in the graphic and web design industry, there was still a learning curve that took place before I felt somewhat comfortable with it. And resources like <a href="http://www.problogger.net/blog/" target="_blank">ProBlogger</a>, <a href="http://www.bloggingbasics101.com/" target="_blank">Blogging Basics 101</a> and my blogging mentor, <a href="http://metropolitanmama.net" target="_blank">Metropolitan Mama</a> were a few of the many resources I went to to find the answers to my questions.</p>
<p>Therefore, one of the weekly features on this here new blog o&#8217; mine will be a <strong>Q &amp; A series</strong> every Thursday. And, yes, I fully realize I am posting this at 9:19 p.m. on the very first Thursday of the series. I&#8217;m a mom, ok? I have kids to <span style="text-decoration: line-through;">nag</span> <span style="text-decoration: line-through;">chase</span> nurture. And they will always come first.</p>
<p>So if you are new to blogging, or just have a burning question, please send them my way. Anytime. Not just on Thursdays. You can <a href="http://twitter.com/apron_strings" target="_blank">Twitter</a> me too. I will pick one or two a week and feature them (and you) in a post and hopefully (*crossing fingers*) will be able to answer your question. And if I cant, I&#8217;ll make something up. Just kidding.</p>
<p>So ask away&#8230;anything goes (Well. you know&#8230;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thepixelboutique.com/2009/01/q-a-kickoff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
