<?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 Girl &#187; Design</title>
	<atom:link href="http://www.blogging-girl.com/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blogging-girl.com</link>
	<description>Blogging about everything related to blogs</description>
	<lastBuildDate>Tue, 20 Jul 2010 19:00:59 +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>WordPress: Use Custom Fields to display images in posts</title>
		<link>http://www.blogging-girl.com/2010/02/27/wordpress-use-custom-fields-to-display-images-in-posts/</link>
		<comments>http://www.blogging-girl.com/2010/02/27/wordpress-use-custom-fields-to-display-images-in-posts/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 17:26:55 +0000</pubDate>
		<dc:creator>Blogging Girl</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[wordpress]]></category>

	<!-- AutoMeta Start -->
	<category></category>
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.blogging-girl.com/?p=924</guid>
		<description><![CDATA[Custom fields have been a core part of WordPress for quite some time. They are designed to add extra information to your posts, or change the way that information is presented, depending on how you use them. Up until recently I never bothered to work with the custom fields, but then a client approached me [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.blogging-girl.com%2F2010%2F02%2F27%2Fwordpress-use-custom-fields-to-display-images-in-posts%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.blogging-girl.com%2F2010%2F02%2F27%2Fwordpress-use-custom-fields-to-display-images-in-posts%2F&amp;source=kissmykitty&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://codex.wordpress.org/Custom_Fields">Custom fields</a> have been a core part of <a href="http://www.wordpress.org">WordPress</a> for quite some time. They are designed to add extra information to your posts, or change the way that information is presented, depending on how you use them. Up until recently I never bothered to work with the custom fields, but then a client approached me with a request that I felt would best be solved by making use of them.</p>
<p>In a nutshell, here is how to use custom fields to display images in posts. The nice thing about this method is that the HTML source code is inserted into the post only if there is data in the custom fields. In other words, any posts that you do not bother to insert custom field data into will not display any of the source code. So you can add images only on those posts that you feel need them; you won&#8217;t have to worry about empty or incomplete HTML code being displayed in other posts.</p>
<p>First, create a custom field named &#8220;Image&#8221;. Its value should be the URL to the image you&#8217;d like to display in your post (for consistency and ease of remembering, I recommend uploading these images to <em>wp-content/uploads/images</em>.</p>
<p>Next, create a custom field named &#8220;Image Class&#8221;. Its value should be image-class, or whatever class element name you&#8217;ll be using in your stylesheet to create the visual effect on your images (left alignment, padding, borders, etc.).</p>
<p>Finally, consider creating a custom field named &#8220;Image Description&#8221;, and inserting into its value the alt description you would like to use for your image.</p>
<hr width="100%" size="1" color="#ccc" />
<p>Now that you have your custom fields set up, open your theme&#8217;s <em>index.php</em> and <em>single.php</em> files (assuming that you&#8217;d like to have the images displayed on both posts listed on your index and on the individual post pages) in FTP, or in the Theme Editor in the WP admin area. Insert the following after <em>if(have_posts()) : while(have_posts()) : the_post();</em>:</p>
<blockquote><p>
// check for image<br />
$thumb = get_post_meta($post->ID, &#8216;Image&#8217;, $single = true);<br />
// check for image class<br />
$thumb_class = get_post_meta($post->ID, &#8216;Image Class&#8217;, $single = true);<br />
// check for image alt text<br />
$thumb_alt = get_post_meta($post->ID, &#8216;Image Description&#8217;, $single = true);
</p></blockquote>
<p>That code checks for the existence of the custom fields in your posts. Insert the following code before <em>php the_content();</em>, as this is the code that actually <strong>displays</strong> your image (please change imgsrc to image src, and add <? and ?> before/after php!):</p>
<blockquote><p>
php // if there&#8217;s a image<br />
if($thumb !== &#8221;) { ?></p>
<p>
	<imgsrc="<?php echo $thumb; ?>&#8221;<br />
	class=&#8221;<?php if($thumb_class !== '') { echo $thumb_class; } else { echo "left"; } ?>&#8221;<br />
	alt=&#8221;<?php if($thumb_alt !== '') { echo $thumb_alt; } else { echo the_title(); } ?>&#8221;<br />
	/>
	</p>
<p>php } // end if statement</p>
<p>// if there&#8217;s not a image<br />
else { echo &#8221;; } ?>
</p></blockquote>
<p>And that&#8217;s it! Happy posting.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogging-girl.com/2010/02/27/wordpress-use-custom-fields-to-display-images-in-posts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Elegant Themes</title>
		<link>http://www.blogging-girl.com/2009/11/17/elegant-themes/</link>
		<comments>http://www.blogging-girl.com/2009/11/17/elegant-themes/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 17:56:58 +0000</pubDate>
		<dc:creator>Blogging Girl</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/bgirl/public_html/wp-content/plugins/autometa/autometa.php</b> on line <b>364</b><br />
		<category><![CDATA[Design]]></category>
		<category><![CDATA[wordpress themes]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.blogging-girl.com/?p=798</guid>
		<description><![CDATA[I&#8217;m usually not one to pay for WordPress themes, but the pool of free themes is rather boring and overused, and I don&#8217;t have the time to design custom themes for all of my blogs. I always use my own themes for my personal domain, jenn.nu, but for others I will often take advantage of [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F11%2F17%2Felegant-themes%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F11%2F17%2Felegant-themes%2F&amp;source=kissmykitty&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>I&#8217;m usually not one to pay for <a href="http://www.wordpress.org">WordPress</a> themes, but the pool of free themes is rather boring and overused, and I don&#8217;t have the time to design custom themes for all of my blogs. I always use my own themes for my personal domain, <a href="http://www.jenn.nu">jenn.nu</a>, but for others I will often take advantage of pre-mades. Many people, both personal blog owners and commercial site owners, take advantage of pre-mades. I have already seen recipe blogs, <a href="http://www.nextadvisor.com/identity_theft_protection_services/index.php">identity theft protection</a> companies and even debt consolidation companies use pre-made themes on their WordPress-powered blogs.</p>
<p>Anyway, I recently paid for a subscription to <a href="http://www.elegantthemes.com">Elegant Themes</a>. I was enticed by their <a href="http://www.elegantthemes.com/gallery/glow/">Glow</a> theme, which on its own is definitely worth $20 or more. They have several themes, and it seems as though they add new themes often, so there&#8217;s always a varied selection to choose from. Glow is definitely a popular theme. I&#8217;ve seen it in use on <a href="http://www.kallure.com">kallure.com</a> and <a href="http://www.caity.nu">caity.nu</a>, which is how I first discovered it and found out about Elegant themes!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogging-girl.com/2009/11/17/elegant-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hard coding vs. widgets</title>
		<link>http://www.blogging-girl.com/2009/11/04/hard-coding-vs-widgets/</link>
		<comments>http://www.blogging-girl.com/2009/11/04/hard-coding-vs-widgets/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 17:35:03 +0000</pubDate>
		<dc:creator>Blogging Girl</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/bgirl/public_html/wp-content/plugins/autometa/autometa.php</b> on line <b>364</b><br />
		<category><![CDATA[Design]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.blogging-girl.com/?p=784</guid>
		<description><![CDATA[I am not a fan of widgets. I never have been. From my earliest coding days I have always preferred to hard-code HTML and XHTML, rather than rely on a widget or pre-made block of code to do the job for me. I&#8217;m picky about styles, colors and fonts. Widgets take away some of the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F11%2F04%2Fhard-coding-vs-widgets%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F11%2F04%2Fhard-coding-vs-widgets%2F&amp;source=kissmykitty&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>I am not a fan of widgets. I never have been. From my earliest coding days I have always preferred to hard-code HTML and XHTML, rather than rely on a widget or pre-made block of code to do the job for me. I&#8217;m picky about styles, colors and fonts. Widgets take away some of the control you have over the final product. I love being able to get balls-deep in code and manipulate it to my satisfaction. I&#8217;ve worked with widgets for a few client websites (one sold <a href="http://www.lightingshowplace.com/page/ceiling_fans">ceiling fan</a>s; another sold light bulbs; a third specialized in wedding favors), and I can honestly say that 99% of widgets don&#8217;t allow you to do everything you may want to do. And if it can be done, it usually requires editing the widget settings <em>and</em> the widget .php file. And that is just an exercise in inefficiency.</p>
<p>How do you do your layouts? Do you code every single element on your own, or do you use widgets to make things go up quickly and easily?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogging-girl.com/2009/11/04/hard-coding-vs-widgets/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Show off your DailyBooth on your blog</title>
		<link>http://www.blogging-girl.com/2009/10/02/show-off-your-dailybooth-on-your-blog/</link>
		<comments>http://www.blogging-girl.com/2009/10/02/show-off-your-dailybooth-on-your-blog/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 11:49:26 +0000</pubDate>
		<dc:creator>Blogging Girl</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/bgirl/public_html/wp-content/plugins/autometa/autometa.php</b> on line <b>364</b><br />
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Websites]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.blogging-girl.com/?p=739</guid>
		<description><![CDATA[So once upon a time DailyBooth had some sort of spiffy photo-sharing widget, and there was even a WordPress plugin (aptly named DailyBooth Fetcher) that would display as many photos as you would like to have displayed on a WordPress-powered blog. But the widget seems to have disappeared, and the plugin reports a 404 error [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F10%2F02%2Fshow-off-your-dailybooth-on-your-blog%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F10%2F02%2Fshow-off-your-dailybooth-on-your-blog%2F&amp;source=kissmykitty&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>So once upon a time <a href="http://www.dailybooth.com">DailyBooth</a> had some sort of spiffy photo-sharing widget, and there was even a <a href="http://www.wordpress.org/">WordPress</a> plugin (aptly named <a href="http://wordpress.org/extend/plugins/dailybooth-fetcher/">DailyBooth Fetcher</a>) that would display as many photos as you would like to have displayed on a WordPress-powered blog. But the widget seems to have disappeared, and the plugin reports a 404 error with the .xml file it is supposed to be fetching and displaying photos from.</p>
<p>The good news is that DailyBooth makes it <strong>very</strong> easy for you to share your latest photo on your blog about <a href="http://www.babystuffgifts.com/gift-baskets-for-baby.html">baby gift baskets</a>, or on any other type of website. It&#8217;s just not something that is publicized. In fact, I only know about it because I saw it in action on <a href="http://www.glam-girl.org">glam-girl.org</a>!</p>
<p>So, the super awesome method of displaying your latest DailyBooth photo? Simple &#8212; use the following image URL (be sure to substitute <em>username</em> with <strong>your</strong> username):</p>
<blockquote><p>http://dailybooth.com/<strong>username</strong>/latest/large.jpg</p></blockquote>
<p>Small &#038; medium sizes are available as well (simply change <em>large</em> to <em>small</em> or <em>medium</em>).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogging-girl.com/2009/10/02/show-off-your-dailybooth-on-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Need an image map?</title>
		<link>http://www.blogging-girl.com/2009/09/12/need-an-image-map/</link>
		<comments>http://www.blogging-girl.com/2009/09/12/need-an-image-map/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 16:41:50 +0000</pubDate>
		<dc:creator>Blogging Girl</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/bgirl/public_html/wp-content/plugins/autometa/autometa.php</b> on line <b>364</b><br />
		<category><![CDATA[Design]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.blogging-girl.com/?p=685</guid>
		<description><![CDATA[Image maps used to be all of the rage in web design. These days I don&#8217;t see or use them much, but every so often a client requests one, or there&#8217;s an image that would be implemented most efficiently with the aid of an image map. The only problem is that I don&#8217;t have have [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F09%2F12%2Fneed-an-image-map%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F09%2F12%2Fneed-an-image-map%2F&amp;source=kissmykitty&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Image maps used to be all of the rage in web design. These days I don&#8217;t see or use them much, but every so often a client requests one, or there&#8217;s an image that would be implemented most efficiently with the aid of an image map. The only problem is that I don&#8217;t have have software that creates image maps (although I believe Adobe Photoshop CS4 does &#8212; I don&#8217;t know where the settings are at, though). So, I used my trusty Googling skills, and the term <em>free image map generator</em> lead me to <a href="http://www.image-maps.com/">image-maps.com</a>.</p>
<p>image-maps.com works just as it should. You simply upload your image, and use the easy wizard to create your rectangular or customized shapes, input the URLs and optional alt/title attributes, and then click the submit button. You can then see your image map in action, and view the HTML code and optional CSS code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogging-girl.com/2009/09/12/need-an-image-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get inspired</title>
		<link>http://www.blogging-girl.com/2009/09/01/get-inspired/</link>
		<comments>http://www.blogging-girl.com/2009/09/01/get-inspired/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 04:40:42 +0000</pubDate>
		<dc:creator>Blogging Girl</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/bgirl/public_html/wp-content/plugins/autometa/autometa.php</b> on line <b>364</b><br />
		<category><![CDATA[Design]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.blogging-girl.com/?p=643</guid>
		<description><![CDATA[For me, the hardest part of coming up with a new layout relates directly to trying to find direction. I can manipulate photos and illustrations in Adobe Photoshop, I can work with CSS and HTML in my sleep, but if I don&#8217;t know where to start or where to go, I founder. Case and point? [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F09%2F01%2Fget-inspired%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F09%2F01%2Fget-inspired%2F&amp;source=kissmykitty&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>For me, the hardest part of coming up with a new layout relates directly to trying to find <em>direction</em>. I can manipulate photos and illustrations in Adobe Photoshop, I can work with CSS and HTML in my sleep, but if I don&#8217;t know where to start or where to go, I founder. Case and point? <a href="http://www.jenn.nu">jenn.nu</a>&#8216;s newest layout. I spent weeks trying to come up with something, but never really got anywhere. The things I did think of I have already done before. The other things I thought of, such as a <a href="http://www.jenn.nu/2009/08/19/i-want-my-two-hours-back/">snazzy pink one-columned layout</a>, wound up not being practical for the amount of content that I need to display.</p>
<p>Out of sheer desperation I hit a bunch of CSS galleries. Now, I&#8217;d like to add a disclaimer, both for myself and anyone else: it&#8217;s okay to <em>browse</em> CSS galleries and website showcases for <strong>inspiration</strong>. But it is NOT okay to copy layouts and specific styles that are showcased. Use your own imagination and creativity! Inspiration is simply there to get you started, or help you tie up loose ends. <img src='http://www.blogging-girl.com/wp-includes/images/smilies/smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Here are some of my favorite CSS galleries:</p>
<ul>
<li><a href="http://www.welovewp.com">We Love WP</a></li>
<li><a href="http://www.cssenvy.com/">CSS Envy</a></li>
<li><a href="http://www.cssimport.com/">CSS Import</a></li>
<li><a href="http://bestwebgallery.com/">Best Web Gallery</a></li>
<li><a href="http://www.nicestylesheet.com/">Nice Stylesheet</a></li>
<li><a href="http://cssbrigit.com/">CSS Brigit</a></li>
<li><a href="http://cssbeauty.com/">CSS Beauty</a></li>
<li><a href="http://www.cssbreeze.com/">CSS Breeze</a></li>
<li><a href="http://css-imagine.com/">CSS Imagine</a></li>
<li><a href="http://www.designshack.co.uk">Design Shack</a></li>
<li><a href="http://www.bestcssvault.com/">Best CSS Vault</a></li>
</ul>
<p>Happy surfing!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogging-girl.com/2009/09/01/get-inspired/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A list of common escape codes</title>
		<link>http://www.blogging-girl.com/2009/08/31/a-list-of-common-escape-codes/</link>
		<comments>http://www.blogging-girl.com/2009/08/31/a-list-of-common-escape-codes/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 07:35:07 +0000</pubDate>
		<dc:creator>Blogging Girl</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/bgirl/public_html/wp-content/plugins/autometa/autometa.php</b> on line <b>364</b><br />
		<category><![CDATA[Design]]></category>
		<category><![CDATA[tips]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.blogging-girl.com/?p=637</guid>
		<description><![CDATA[Escape codes are special entities that allow you to post raw HTML and XHTML within webpages. Because HTML is used to construct and display webpages, many characters are reserved, which means that they cannot be used and will not be displayed within browsers. These characters include left and right angle brackets and other significant markup [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F08%2F31%2Fa-list-of-common-escape-codes%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F08%2F31%2Fa-list-of-common-escape-codes%2F&amp;source=kissmykitty&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Escape codes are special entities that allow you to post raw HTML and XHTML within webpages. Because HTML is used to construct and display webpages, many characters are <em>reserved</em>, which means that they cannot be used and will not be displayed within browsers. These characters include left and right angle brackets and other significant markup characters.</p>
<p>So what do you do if you want to show off some HTML? Use escape codes, of course!</p>
<p>Here is a list of a few popular ones:</p>
<p><strong>Copyright symbol (&copy;):</strong> <em>&amp;copy;</em></p>
<p><strong>Registered symbol (&reg;):</strong> <em>&amp;reg;</em></p>
<p><strong>Trademark symbol (&trade;):</strong> <em>&amp;trade;</em></p>
<p><strong>Left angle bracket (&lt;):</strong> <em>&amp;lt;</em></p>
<p><strong>Right angle bracket (&gt;):</strong> <em>&amp;gt;</em></p>
<p><strong>Ampersand (&amp;):</strong> <em>&amp;amp;</em></p>
<p>For more escape codes, check out <a href="http://www.escapecodes.info/">EscapeCodes.info</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogging-girl.com/2009/08/31/a-list-of-common-escape-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t forget your favicon!</title>
		<link>http://www.blogging-girl.com/2009/08/28/dont-forget-your-favicon/</link>
		<comments>http://www.blogging-girl.com/2009/08/28/dont-forget-your-favicon/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 20:26:23 +0000</pubDate>
		<dc:creator>Blogging Girl</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/bgirl/public_html/wp-content/plugins/autometa/autometa.php</b> on line <b>364</b><br />
		<category><![CDATA[Design]]></category>
		<category><![CDATA[tips]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.blogging-girl.com/?p=632</guid>
		<description><![CDATA[The favicon (favorites icon) is a small but appreciated and delightful detail to add onto any website. A favicon is generally 16 x 16 or 32 x 32, and it appears on the far left of the address bar when the website is being viewed. It may also be saved &#038; displayed along with the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F08%2F28%2Fdont-forget-your-favicon%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F08%2F28%2Fdont-forget-your-favicon%2F&amp;source=kissmykitty&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>The favicon (favorites icon) is a small but appreciated and delightful detail to add onto any website. A favicon is generally 16 x 16 or 32 x 32, and it appears on the far left of the address bar when the website is being viewed. It may also be saved &#038; displayed along with the site&#8217;s title (or bookmark&#8217;s name) within a browser. I use favicons for all of my websites, and you should too!</p>
<p>To make a favicon, simply create a 16 x 16 or 32 x 32 image in your graphics program. Save it as a transparent .gif (transparency is recommended because some browsers use colored themes or color schemes, and thus the backdrop to a favicon may not be white) (you <em>can</em> choose .jpg or .png, but .gif is recommended because it is universal and can be processed by all browsers and operating systems), upload it to your server, and add it to your website by inserting the following code before your <strong></head></strong> tag:</p>
<pre>&lt;link rel="shortcut icon" href="http://www.domain.com/path_to_your_favicon.gif" type="image/x-icon" /&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.blogging-girl.com/2009/08/28/dont-forget-your-favicon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DryIcons.com</title>
		<link>http://www.blogging-girl.com/2009/08/24/dryicons-com/</link>
		<comments>http://www.blogging-girl.com/2009/08/24/dryicons-com/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 04:54:51 +0000</pubDate>
		<dc:creator>Blogging Girl</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/bgirl/public_html/wp-content/plugins/autometa/autometa.php</b> on line <b>364</b><br />
		<category><![CDATA[Design]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.blogging-girl.com/?p=629</guid>
		<description><![CDATA[I stumbled across DryIcons.com last week (from, oddly enough, a spammy advertisement about best fat burners), and quickly added them to my list of bookmarks. Besides offering premium icons and vector illustrations, they also have an impressive collection (that spans dozens of pages!) of free vector illustrations and graphics. A lot of people prefer to [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F08%2F24%2Fdryicons-com%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F08%2F24%2Fdryicons-com%2F&amp;source=kissmykitty&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>I stumbled across <a href="http://www.dryicons.com">DryIcons.com</a> last week (from, oddly enough, a spammy advertisement about <a href="http://www.bestfatburners.org/">best fat burners</a>), and quickly added them to my list of bookmarks. Besides offering premium icons and vector illustrations, they also have an impressive collection (that spans dozens of pages!) of <strong>free</strong> vector illustrations and graphics. A lot of people prefer to use their own images and illustrations in their layouts, but for those that don&#8217;t have the creativity, skill, time or desire to make something of their own, a resource site like DryIcons.com would definitely be appreciated.</p>
<p>Personally, I think they&#8217;re pretty damn awesome. But I may be just a bit biased, since I&#8217;ve found some great stuff within their pages. <img src='http://www.blogging-girl.com/wp-includes/images/smilies/wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogging-girl.com/2009/08/24/dryicons-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Patterns overload!</title>
		<link>http://www.blogging-girl.com/2009/08/23/patterns-overload/</link>
		<comments>http://www.blogging-girl.com/2009/08/23/patterns-overload/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 04:54:28 +0000</pubDate>
		<dc:creator>Blogging Girl</dc:creator>
		<br />
<b>Warning</b>:  Invalid argument supplied for foreach() in <b>/home/bgirl/public_html/wp-content/plugins/autometa/autometa.php</b> on line <b>364</b><br />
		<category><![CDATA[Design]]></category>

	<!-- AutoMeta Start -->
	<!-- AutoMeta End -->
	
		<guid isPermaLink="false">http://www.blogging-girl.com/?p=656</guid>
		<description><![CDATA[I love patterns. They are perfect as backgrounds, as they work well with photographs and illustrations alike. There are plenty of websites that offer free patterns. Some of them, such as Color Lovers, allow you to take &#8220;blank&#8221; patterns and customize them by choosing colors and color schemes. This is great if you have a [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F08%2F23%2Fpatterns-overload%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.blogging-girl.com%2F2009%2F08%2F23%2Fpatterns-overload%2F&amp;source=kissmykitty&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>I love patterns. They are perfect as backgrounds, as they work well with photographs and illustrations alike. There are plenty of websites that offer free patterns. Some of them, such as <a href="http://www.colorlovers.com">Color Lovers</a>, allow you to take &#8220;blank&#8221; patterns and customize them by choosing colors and color schemes. This is great if you have a blog for <a href="http://fatburners.org/">fat burner</a>s set up, and a color scheme picked out, but you just need a pattern (using that color scheme) to complete the look of the website.</p>
<p>Here is a list of some tried &#038; true pattern sites:</p>
<ul>
<li><a href="http://patterns.ava7.com/">ava7 patterns</a></li>
<li><a href="http://www.k10k.net/pixelpatterns/">Kaliber10000 {The Pixel Patterns Collection}</a></li>
<li><a href="http://www.patterrific.com">Patterrific</a></li>
</ul>
<p>Do you have any to recommend? Let me know and I&#8217;ll add them to the list (and credit you, of course)! <img src='http://www.blogging-girl.com/wp-includes/images/smilies/smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blogging-girl.com/2009/08/23/patterns-overload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
