<?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>Bennett-Burks Web-Design, and SEO Blog</title>
	<atom:link href="http://mebdesign.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://mebdesign.net</link>
	<description>Website Design, SEO, Freelancing</description>
	<lastBuildDate>Sat, 18 Feb 2012 23:56:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>HTML 5 and Backwards Compatibility</title>
		<link>http://mebdesign.net/2012/02/18/html-5-compatibility/</link>
		<comments>http://mebdesign.net/2012/02/18/html-5-compatibility/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 23:27:13 +0000</pubDate>
		<dc:creator>Bennett-Burks</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mebdesign.net/?p=496</guid>
		<description><![CDATA[The newest spec for HTML is still not a complete animal just yet, but all ready web-designers are putting it into usage.  This is a good thing, as it is very important for a web-designer to stay on top of new web technologies. Still there are many support issues with HTML5, and CSS3 (which web [...]]]></description>
			<content:encoded><![CDATA[<p>The newest spec for HTML is still not a complete animal just yet, but all ready web-designers are putting it into usage.  This is a good thing, as it is very important for a web-designer to stay on top of new web technologies.</p>
<p>Still there are many support issues with HTML5, and CSS3 (which web designers and developers tend to think of as two peas in a pod).  IE8 and lower simply do not support HTML5.  Fortunately all the major newer browsers do at least to some extent (IE9 and up, Chrome, newer versions of FF and Safari, and the list goes on).<br />
<span id="more-496"></span></p>
<p>There&#8217;s a number of ways to respond to the support issues with the newest HTML specification.  You could just keep making your sites in HTML4/XHTML,  but even if you do you should still learn HTML5 since its support is only becoming greater.  There&#8217;s also a number of tricks you can use to force it to (at  least to an extent) work on older browsers that don&#8217;t support it.  Or you can just stop worrying about whether your websites are compatible with older browsers.</p>
<p>There&#8217;s plenty of arguments for and against ignoring older browsers (especially IE6, and even IE7 now).  But IE8 is still very popular, and in most cases it would be a mistake to ignore this browser.</p>
<p>Fortunately one of the really big issues with earlier versions of IE and other old browsers is very easy to fix.  If you view an HTML 5 website in IE8 for example, without any sort of &#8220;fixes&#8221; HTML5 tags such as Header, Footer, and Aside are simply ignored.   So any styles you created for them will be ignored, as if they don&#8217;t even exist.</p>
<p>A little javascript however fixes this problem nicely:</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
document.createElement(&#8220;article&#8221;);<br />
document.createElement(&#8220;footer&#8221;);<br />
document.createElement(&#8220;header&#8221;);<br />
document.createElement(&#8220;hgroup&#8221;);<br />
document.createElement(&#8220;nav&#8221;);<br />
document.createElement(&#8220;aside&#8221;);<br />
document.createElement(&#8220;section&#8221;);<br />
&lt;/script&gt;</p>
<p>You can put this in the head section of your website, but it would be best to place it in an external JS file.</p>
<p>One more issue that will become readily apparent is that older browsers, even after the JS fix, aren&#8217;t going to recognize the new HTML5 tags as block elements.  A bit of CSS will fix this.  Here&#8217;s the CSS that I use:</p>
<p>header, footer, article, aside, section, hgroup, nav<br />
{<br />
display:block;<br />
}</p>
<p>Now older browers will recognize your HTML5 tags, and display them as blocks.</p>
<p>There is of course a lot more to getting HTML5 to work on older browsers than this, but at least now your HTML5 website&#8217;s layout should render basically correctly.</p>
]]></content:encoded>
			<wfw:commentRss>http://mebdesign.net/2012/02/18/html-5-compatibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to swap content areas (divs) JS free</title>
		<link>http://mebdesign.net/2011/10/08/swap-content-areas-divs-js-free/</link>
		<comments>http://mebdesign.net/2011/10/08/swap-content-areas-divs-js-free/#comments</comments>
		<pubDate>Sun, 09 Oct 2011 03:21:47 +0000</pubDate>
		<dc:creator>Bennett-Burks</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://mebdesign.net/?p=455</guid>
		<description><![CDATA[There&#8217;s a lot of scripts out there which will allow you to swap out one content area (div) for another when a link or button is clicked. However if you just want a nice simple div swap no Javascript is necessary, all you need is CSS and HTML. You won&#8217;t get any sort of Fancy [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a lot of scripts out there which will allow you to swap out one content area (div) for another when a link or button is clicked. However if you just want a nice simple div swap no Javascript is necessary, all you need is CSS and HTML.<br />
<span id="more-455"></span><br />
You won&#8217;t get any sort of Fancy transition, or fade effect like certain JS libraries such as JQuery can provide, but this is easy to do, and nice and lightweight.</p>
<p>This particular content swap looks best when the link or button clicked to swap content floats next to the div that has the content to be swapped, since this does use jump links, and you might want to minimize the affect of it jumping down the page. It also works great on pages where the bulk of the page length is taken up by the area where the swap takes place.</p>
<p>You can of course get a lot more creative with designing the look of your content swap, but here&#8217;s what a pretty basic one will look like:</p>
<div style="position: relative; float: left; width: 150px; padding-top: 16px;"><a href="#area2">area 2</a><br />
<a href="#area1">back to area 1</a></div>
<div style="position: relative; float: left; height: 187px; width: 300px; overflow: hidden; padding-top: 16px;">
<div id="area1" style="position: relative; height: 195px; width: 280px; border: solid #555 1px; padding: 6px 4px 0 4px; background: #450102; color: #fff;">This is content area 1.</div>
<div id="area2" style="position: relative; height: 195px; width: 280px; border: solid #555 1px; padding: 6px 4px 0 4px;">This is content area 2.</div>
</div>
<p style="clear: both;">And this is the basic HTML markup that you&#8217;ll need for it to work:</p>
<pre style="clear: both;">&lt;a href="#area2"&gt;Click here to see content area 2&lt;/a&gt;
&lt;a href="#area1"&gt;Click here to go back to content area 1&lt;/a&gt;
&lt;div id="contentareas"&gt;
&lt;div id="area1"&gt;This is content area 1.&lt;/div&gt;
&lt;div id="area2"&gt;This is content area 2.&lt;/div&gt;
&lt;/div&gt;</pre>
<p>And the CSS (just the basics you&#8217;ll need for it to work):</p>
<pre>#contentareas
{
/* in order for the swap to work overflow must be hidden so that you don't
see both content areas. You must also have a set height and width. */
position:relative;
height:200px;
width:300px;
overflow:hidden;
}

#area1
{
position:relative;
height:192px;
width: 280px;
/* again you'll want to set height and width on this div. */
}

#area2
{
position:relative;
height:192px;
width: 280px;
/* for every area make sure you've set height and width. 
If you see part of the previous area peaking through, make sure to adjust
the height and width of that area until it can no longer be seen once you
switch to the next area down */
}</pre>
<p>And that&#8217;s all you need for your content swap to work! Beyond that it&#8217;s just a matter of making it look nice.</p>
]]></content:encoded>
			<wfw:commentRss>http://mebdesign.net/2011/10/08/swap-content-areas-divs-js-free/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress as a CMS Part 1: Multiple Columns</title>
		<link>http://mebdesign.net/2011/09/24/wordpress-as-a-cms-part-1-multiple-columns/</link>
		<comments>http://mebdesign.net/2011/09/24/wordpress-as-a-cms-part-1-multiple-columns/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 06:43:39 +0000</pubDate>
		<dc:creator>Bennett-Burks</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://mebdesign.net/?p=428</guid>
		<description><![CDATA[It&#8217;s become pretty popular to use WordPress not only as a blogging platform, but as a full-blown CMS. But out of the box WordPress still has some pretty big limitations. For example it is pretty common to have one primary content area, and then a column of widgets that is basically the same from page [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s become pretty popular to use WordPress not only as a blogging platform, but as a full-blown CMS. But out of the box WordPress still has some pretty big limitations.</p>
<p>For example it is pretty common to have one primary content area, and then a column of widgets that is basically the same from page to page.  But generally WordPress isn&#8217;t particularly user-friendly when it comes to dealing with multiple columns of page or post specific content. Fortunately there&#8217;s a plugin that makes having multiple columns of page specific content really easy.<br />
<span id="more-428"></span><br />
<a href="http://wordpress.org/extend/plugins/wp-post-columns/" target="_blank">WordPress Post Columns</a></p>
<p>If you want to  easily add separate columns of content to a page (or post) on your WordPress website then this is a great plugin.  One thing very nice about this plugin is you don&#8217;t have to modify your theme at all to use it, so especially great if you are uncomfortable with theme modification.</p>
<p>Basically all you have to do is install this plugin on your WordPress site, activate it, and then on whatever page you want multiple columns add in tags like this:</p>
&#91;column width="40%" padding="20px&#93; some content. &#91;/column&#93; &#91;column width="40%" padding="0"&#93; Some more content. &#91;/column&#93;&#91;end_columns&#93;
<p>And the result can be something like this:<br />
<div style="width:50%; float: left; padding-right: 0; display: inline;" class="post_column_1"><p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec neque ligula, consequat id adipiscing ut, accumsan non sapien. Nam facilisis blandit pulvinar. Nulla et sem fringilla nunc pellentesque dictum sed eget massa. Ut adipiscing varius dolor, vulputate lacinia enim rhoncus at. Sed metus felis, porta sit amet convallis et, accumsan commodo dolor. Suspendisse potenti. Praesent nisi lacus, vestibulum eget vulputate et, posuere non urna. Suspendisse pellentesque malesuada imperdiet </div></p>
<div style="width:50%; float: left; padding-right: 0; display: inline;" class="post_column_1"><p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec neque ligula, consequat id adipiscing ut, accumsan non sapien. Nam facilisis blandit pulvinar. Nulla et sem fringilla nunc pellentesque dictum sed eget massa. Ut adipiscing varius dolor, vulputate lacinia enim rhoncus at. Sed metus felis, porta sit amet convallis et, accumsan commodo dolor. Suspendisse potenti. Praesent nisi lacus, vestibulum eget vulputate et, posuere non urna. Suspendisse pellentesque malesuada imperdiet</div>
<div style="clear: both;"></div>
<p>There are many more plugins out there that can be very useful, especially if you want to use WordPress as a full blown CMS, and part two of this series will be featuring one called the The Page.ly MultiEdit Plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://mebdesign.net/2011/09/24/wordpress-as-a-cms-part-1-multiple-columns/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Rise from your grave!</title>
		<link>http://mebdesign.net/2011/09/24/rise-from-your-grave/</link>
		<comments>http://mebdesign.net/2011/09/24/rise-from-your-grave/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 06:06:22 +0000</pubDate>
		<dc:creator>Bennett-Burks</dc:creator>
				<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://mebdesign.net/?p=424</guid>
		<description><![CDATA[It&#8217;s been quite a while since my last post, but I&#8217;ve decided to bring this blog back to life. Right now I&#8217;m working on an article about some ways to make non-blog websites with nifty things like multiple columns of content, and multiple editable areas using one of the most popular CMS out there: WordPress.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been quite a while since my last post, but I&#8217;ve decided to bring this blog back to life.  Right now I&#8217;m working on an article about some ways to make non-blog websites with nifty things like multiple columns of content, and multiple editable areas using one of the most popular CMS out there: WordPress.  </p>
]]></content:encoded>
			<wfw:commentRss>http://mebdesign.net/2011/09/24/rise-from-your-grave/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Places to Submit your Site: Website (CSS) galleries</title>
		<link>http://mebdesign.net/2010/12/03/places-to-submit-your-site-website-css-galleries/</link>
		<comments>http://mebdesign.net/2010/12/03/places-to-submit-your-site-website-css-galleries/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 04:26:54 +0000</pubDate>
		<dc:creator>Bennett-Burks</dc:creator>
				<category><![CDATA[resources]]></category>

		<guid isPermaLink="false">http://mebdesign.net/?p=411</guid>
		<description><![CDATA[Getting back-links to your site can be one of the more difficult things to do, but one great option can be to submit your site to a website gallery (more often called a CSS gallery). These galleries do review submissions, and are typically looking for sites that are well-designed, and stand out visually. Some are [...]]]></description>
			<content:encoded><![CDATA[<p>Getting back-links to your site can be one of the more difficult things to do, but one great option can be to submit your site to a website gallery (more often called a CSS gallery).<br />
<span id="more-411"></span><br />
These galleries do review submissions, and are typically looking for sites that are well-designed, and stand out visually.  Some are even more specific, and will only add sites if they are particularly unusual, or have a specific feature.<br />
If your websites are all fairly average looking, or generic looking, you might have a hard time finding galleries that will list them.<br />
However each gallery&#8217;s submissions are going to reviewed by a different person, which means that your dealing with different people, with different tastes, so if your site doesn&#8217;t get into one gallery, it could still get into another.<br />
If your site doesn&#8217;t get accepted into any galleries initially, don&#8217;t get discouraged, try submitting different websites, and try submitting to different galleries.</p>
<p>If you have sites that you think are really beautiful and well-put together you may find that these galleries are great way to not only get back-links, but to get your work showcased along with some other impressive designs.<br />
These galleries are also just great to look through to see what other designers are doing, and get some inspiration.</p>
<p>Most galleries will list sites for free, but I&#8217;ve encountered a few here and there that do charge.</p>
<h3>General CSS Galleries</h3>
<p>These are the more diverse CSS galleries.  They feature all kinds of different websites with different sorts of layouts and features.</p>
<p><a href="http://www.csselite.com/">CSS Elite</a><br />
<a href="http://www.boxedcss.com/index.php">BoxedCSS</a><br />
<a href="http://www.cssbeauty.com/gallery/">CSS Beauty</a><br />
<a href="http://www.divinecss.com/">Divine CSS</a><br />
<a href="http://www.screenalicious.com/">Screenalicious</a><br />
<a href="http://www.cssstar.com/">CSS Star</a><br />
<a href="http://cssray.com/">CSSRay</a><br />
<a href="http://cssremix.com/">CSSRemix</a><br />
One thing I like about this gallery is that when you submit your website it will go into the pending section, eventually it will go into the In Review section, and then if approved it will finally get moved into the Approved section.<br />
<a href="http://styleboost.com/">Style Boost</a><br />
<a href="http://www.cssmania.com/">CSS Mania</a><br />
<a href="http://cssbased.com/">CSS Based</a><br />
<a href="http://csspick.com/">CSS Pick</a></p>
<h3>More Specific Galleries</h3>
<p><a href="http://www.coolhomepages.com/">Cool HomePages </a><br />
Your best bet for getting a site onto Cool HomePages is to submit one which has an unusual feature.  Animated designs seem to be particularly popular on this gallery.</p>
<p><a href="http://designsnips.com/">Design Snips</a><br />
When you submit a website to this gallery, it&#8217;s less like you are submitting the entire site, and more like you are submitting a particular part of that site, such as background, or banner, etc&#8230; So when you submit a site you have to pick out what particular part of that site you is particularly good.</p>
<p><a href="http://www.thehorizontalway.com/">The Horizontal Way</a><br />
This is a gallery specifically for websites that scroll horizontally, rather than vertically like the vast majority of websites.  It&#8217;s gotten me thinking about making a horizontal design of my own.</p>
]]></content:encoded>
			<wfw:commentRss>http://mebdesign.net/2010/12/03/places-to-submit-your-site-website-css-galleries/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Choosing the Right Clients: Some Red Flags</title>
		<link>http://mebdesign.net/2010/10/07/choosing-the-right-clients-some-red-flags/</link>
		<comments>http://mebdesign.net/2010/10/07/choosing-the-right-clients-some-red-flags/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 00:21:27 +0000</pubDate>
		<dc:creator>Bennett-Burks</dc:creator>
				<category><![CDATA[freelancing]]></category>
		<category><![CDATA[clients]]></category>
		<category><![CDATA[contracts]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[red flags]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://mebdesign.net/?p=383</guid>
		<description><![CDATA[Part of making sure that a client is a good one to work for is keeping an eye out for certain red flags.   Every freelancer whether you are a freelance web-designer, graphic designer etc... should look out for certain warning signs such as clients that want you to copy someone else's work, without getting permission to do so.]]></description>
			<content:encoded><![CDATA[<p>On my last post (Suggest a topic for me to write about) Cady suggested I write about freelancing and how to make sure you are choosing the right people to work for.</p>
<p> Part of making sure that a client is a good one to work for is keeping an eye out for certain red flags.  Even if you are having a hard time finding clients, you should not ignore these signs, because even in desperate times it&#8217;s not worth it work with nightmare clients (you may not even get any money out of working for them, so it&#8217;s best to just steer clear).<br />
<span id="more-383"></span></p>
<h3>Clients that ask for work with no guarantee of pay</h3>
<p>Now, I&#8217;m not referring to pro-bono work (work that a freelancer chooses to do for free), rather the clients I&#8217;m talking about are ones that ask you to do work, and say that if they like your work then they will pay you.  Often times these clients just want &#8220;concept work&#8221; done.  They often have several clients that they are having do work, and may or may not tell you this.  They may say something like &#8220;whomever&#8217;s design I like best I&#8217;ll pay&#8221;.</p>
<p>Now that might sound a bit like a contest, and nothing wrong with contests but they should be called what they are.  The main reason this is a red flag is because while some clients that ask for work without guarantee of pay are honest, these sorts of clients are notorious for just taking work that they like and using it, or having another cheaper designer finish it for them, and then never paying the person whom originally did the work.</p>
<p>Businesses generally do not consider it an acceptable practice for a customer to pay them not only after the work is all done, but with no guarantee they will pay at all, and/or decide they will only pay if they haven&#8217;t found anyone they think could do a better job.</p>
<h3>Clients that won&#8217;t sign contracts</h3>
<p>If a client initially refuses to sign your contract, it isn&#8217;t necessarily a red flag, it could be a sign that your contract needs some (or even a lot  of) work.   You may need to do some negotiation with them, or it may be that certain things that are absent in the contract should be there, or certain things in the contract are not clear enough.  If even after trying to negotiate them, and fix your contract, they are still unwilling, then it&#8217;s probably best to run to the hills.</p>
<h3>Down payments</h3>
<p>I know some freelancers consider an unwillingness to pay a down payment to be a red flag, and it can be, but isn&#8217;t necessarily.  After all they could have as much reason to think you&#8217;ll run off with their money and they&#8217;ll get nothing out of it, as you have reason to think they&#8217;ll run off with whatever work you&#8217;ve done and you&#8217;ll never see a dime.  I think that contracts can help ease suspicions when it comes to this problem.  </p>
<h3>Clients that ask you to clone/copy a site</h3>
<p>I see tons of people looking for freelancers to do  this kind of work on freelance bidding type websites, and agreeing to do this kind of work can get  you in a heap of trouble, especially if you are copying a large well-known site, but even if you aren&#8217;t. </p>
<p> By copying someone else&#8217;s website, or design you are breaking copyright law, and could also be breaking trademark laws.  People sometimes get it into their heads that if it&#8217;s online it&#8217;s OK for anyone to use it how ever they please, right down to copying it, but this is simply not true. </p>
<p>It may be worth it to inform the client  that what the service they are asking someone to provide is breaking the law.  Sure you could anger someone this way, but you could also keep an ignorant person from doing something that could have negative consequences that they had no clue they&#8217;d ever have to deal with.</p>
<p>This is not an exhaustive list of potential red flags, and there&#8217;s more to finding and selecting the right clients.  This is a good topic, so perhaps I will revisit it in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://mebdesign.net/2010/10/07/choosing-the-right-clients-some-red-flags/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Suggest a topic for me to write  about!</title>
		<link>http://mebdesign.net/2010/09/16/suggest-a-topic-for-me-to-write-about/</link>
		<comments>http://mebdesign.net/2010/09/16/suggest-a-topic-for-me-to-write-about/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 06:39:55 +0000</pubDate>
		<dc:creator>Bennett-Burks</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mebdesign.net/?p=370</guid>
		<description><![CDATA[So, I&#8217;ve decided to ask you, dear readers, what topic you would like to see me cover. I&#8217;ll pick the topic I like best, research it, and post it here. Or maybe I&#8217;ll put up some of my favorite ideas to a vote (er&#8230;poll). So suggest away using the comments section, or you can email [...]]]></description>
			<content:encoded><![CDATA[<p>So, I&#8217;ve decided to ask you, dear readers, what topic you would like to see me cover.<br />
I&#8217;ll pick the topic I like best, research it, and post it here.  Or maybe I&#8217;ll put up some of my favorite ideas to a vote (er&#8230;poll).<br />
So suggest away using the comments section, or you can email me at: <a href="mailto:emeraldtoucanet@yahoo.com">emeraldtoucanet@yahoo.com</a>.</p>
<p>Edit 9/16/10<br />
Note: I will only choose topics that fit in with the rest of the blog, so something relevant to web-designers (could be a topic related to design, freelancing or SEO for example).</p>
]]></content:encoded>
			<wfw:commentRss>http://mebdesign.net/2010/09/16/suggest-a-topic-for-me-to-write-about/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The Zen of CSS Design Review: The Best of Both Worlds</title>
		<link>http://mebdesign.net/2010/09/12/the-zen-of-css-design-review-the-best-of-both-worlds/</link>
		<comments>http://mebdesign.net/2010/09/12/the-zen-of-css-design-review-the-best-of-both-worlds/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 11:10:15 +0000</pubDate>
		<dc:creator>Bennett-Burks</dc:creator>
				<category><![CDATA[resources]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://mebdesign.net/?p=345</guid>
		<description><![CDATA[Now, the Zen of CSS Design by Dave Shea and Molly e. holzschlag is the best of both worlds. 

This book is actually a companion for a quite well-known website, the premise of which was to have many designers create unique style-sheets for the same HTML page.  ]]></description>
			<content:encoded><![CDATA[<p>From what I&#8217;ve found most web-design books fall into one of two camps:</p>
<h3>Those that focus on code.  </h3>
<p>These books go into detail about how to put together the &#8220;guts&#8221; of your website (which is very important).  When it comes to books on JavaScript, PHP, and other programming languages, I don&#8217;t really expect a bunch of stunning looking designs, and discussing the graphic design side of web-design would just be off-topic.  However in a CSS book, or more general web-design book those things are quite appropriate.</p>
<p><span id="more-345"></span></p>
<h3>Those that focus on visual design.  </h3>
<p>These books may be full of gorgeous examples of websites, with little or no explanation of how the design was accomplished from a coding perspective.  Some of these books discuss how to approach web-design from a graphic design stand point, but others are more a gallery of websites than anything.</p>
<p>Now, the Zen of CSS Design by Dave Shea and Molly e. holzschlag is the best of both worlds. </p>
<p>This book is actually a companion for a quite well-known website, the premise of which was to have many designers create unique style-sheets for the same HTML page.<br />
It actually does have quite a few great examples of design.</p>
<p><a href="http://www.csszengarden.com">Visit the CSS Zen Garden</a></p>
<p>The book selects some of these designs to focus on, and uses them as examples of different ways to approach web-design, some of which are quite off-beat, but effective.<br />
Both various elements of graphic design (such as color, texture, how to lead the eye etc&#8230;), and typography are discussed as is how different effects were created with CSS code.</p>
<h3>IE6 Goodies</h3>
<h4> Your site doesn&#8217;t have to look the same in every browser.</h4>
<p>Internet Explorer 6 has been the bane of many a web-designer&#8217;s existence.  One of my favorite CSS Zen Garden designs takes advantage of IE6&#8242;s quirks.  The result is a design that looks completely different in IE6 than in other browsers.  So I&#8217;m glad that this design (called Gemination) was one of the designs selected to be in the book, and that how the designer accomplished getting it to look like a whole different design in IE6 is detailed.  It is quite typical for designers to try very hard to make sure their site looks as close to identical as possible in every browser as they can, but this design shows that going in completely the opposite direction can work, and quite well.</p>
<p><a href="http://www.csszengarden.com/?cssfile=062/062.css">You can see the Gemination design here</a></p>
<p>If you want to see how this site looks in various versions of IE I recommend getting <a href="http://www.my-debugbar.com/wiki/IETester/HomePage"> IETester</a> if you don&#8217;t all ready have it</p>
<h3>Learn Basic CSS First</h3>
<p>This book is not meant to teach basic CSS, and there&#8217;s a lot of things in it that will in all likelihood not make sense if you don&#8217;t all ready know some CSS.  So if you haven&#8217;t started learning CSS all ready, get the basics down, and then dive into this book.</p>
<div style="float:left;">
<iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;npa=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=benburwebdesb-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=0321303474" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>
</div>
<div style="clear:both;">
</div>
]]></content:encoded>
			<wfw:commentRss>http://mebdesign.net/2010/09/12/the-zen-of-css-design-review-the-best-of-both-worlds/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Advertising Garage Band Style</title>
		<link>http://mebdesign.net/2010/09/06/advertising-garage-band-style/</link>
		<comments>http://mebdesign.net/2010/09/06/advertising-garage-band-style/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 07:06:26 +0000</pubDate>
		<dc:creator>Bennett-Burks</dc:creator>
				<category><![CDATA[advertising]]></category>

		<guid isPermaLink="false">http://mebdesign.net/?p=312</guid>
		<description><![CDATA[If you have ever been in a band then chances are good that you've had the wonderful experience of designing a flyer (a poster, often advertising a band's concert, but really a flyer can advertise anything), and then plastering it all over town.  ]]></description>
			<content:encoded><![CDATA[<p>If you have ever been in a band then chances are good that you&#8217;ve had the wonderful experience of designing a flyer (a poster, often advertising a band&#8217;s concert, but really a flyer can advertise anything), and then plastering it all over town.  </p>
<p  class="centerpara"> <a href="http://mebdesign.net/wp-content/uploads/2010/09/flyers1.jpg"><img src="http://mebdesign.net/wp-content/uploads/2010/09/flyers1-300x300.jpg" alt="flyers posted on a bulletin board" title="flyers" width="300" height="300" class="alignnone size-medium wp-image-331" /></a>    </p>
<p><span id="more-312"></span></p>
<p>Bands post flyers on bulletin boards, on telephone poles, and really just about anywhere.  Flyers get posted over flyers, over more flyers, and pretty soon every telephone pole in town is covered solid.   I wonder if TV advertisers approached advertising the same way that people whom post flyers do, whether we might have an epidemic of aneurysms on our hands.                                </p>
<p>I have taken part in this pre-show band ritual many a time, and flyers have helped bring some people into my band&#8217;s shows.  </p>
<p>Flyers are a really inexpensive way to advertise, which is a large part of why pretty much every band on the block uses them. Of course because of how affordable this advertising method is, cutting through the noise can be a real challenge, probably much more so even than other more expensive advertising mediums (advertising pros want to chime in here?).</p>
<p> It used to be that most of the flyers I saw were advertising some band&#8217;s upcoming concert, this was especially the case with the flyers posted on telephone poles.  It does seem to be getting more common for small businesses, and people putting on other events&#8230;etc to use them.  The result often is a big chaotic mess of mostly ugly poorly designed ads, but there have certainly been some very interesting, and attractive ones (I&#8217;m a big fan of well designed flyers, and I&#8217;m especially fond of some of the old psychedelic band posters that I&#8217;ve seen).  </p>
<p>Many cities are now cracking down on posting flyers and prohibiting posting them on telephone poles, at least in part because that huge mess of flyers is seen by some people&#8230; well, probably lots of people, as an eyesore.  Many businesses have bulletin boards for people to post flyers, and some even require you getting permission from the owner first to post your flyer, in an effort to limit the mess.</p>
<p>So, I&#8217;ve gone ahead and designed a flyer advertising my own services, and have been going around posting it on various bulletin boards, just as I&#8217;ve done with band flyers in the past (no telephone poles yet).  I have yet to see whether this form of advertising will earn me any new clients.   I will cross my fingers and hope that mine manages to cut through all the &#8220;noise&#8221; and catch someone&#8217;s attention.</p>
<p>Have you ever used flyers for advertising?  If so you are welcome to share your experience below in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://mebdesign.net/2010/09/06/advertising-garage-band-style/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Three SEO tools to check out</title>
		<link>http://mebdesign.net/2010/09/04/three-seo-tools-to-check-out/</link>
		<comments>http://mebdesign.net/2010/09/04/three-seo-tools-to-check-out/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 05:24:09 +0000</pubDate>
		<dc:creator>Bennett-Burks</dc:creator>
				<category><![CDATA[resources]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://mebdesign.net/?p=291</guid>
		<description><![CDATA[SEO tools aren't just limited to keyword density analyzers, there's also tools that will look at your site and give suggestions for words to use in your PPC (that's pay per click advertising) campaign, and more.    ]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while  since my last post, but I&#8217;m back, and today&#8217;s post is on a few SEO tools that can be found online.<br />
I&#8217;ve personally not made much use of keyword density analysis tools, as I generally prefer to eyeball it anyhow.  However SEO tools aren&#8217;t just limited to keyword density analyzers, there&#8217;s also tools that will look at your site and give suggestions for words to use in your PPC (that&#8217;s pay per click advertising) campaign, and more.    </p>
<p><span id="more-291"></span></p>
<h3><a href="https://adwords.google.com/o/Targeting/Explorer?__u=1000000000&#038;__c=1000000000&#038;ideaRequestType=KEYWORD_IDEAS#search.none"> Google&#8217;s AdWords Keyword tool.</a></h3>
<p>Though this tool is specifically for adwords campaigns, it has the potential to be useful for writing PPC ads in general.</p>
<p>You just have to type in the URL for the site you want analyzed, and this tool will give you a series of keywords, and phrases that it recommends to use with your adwords ads.</p>
<p>It will also show you how much competition there is for a given keyword/phrase, and both global and local monthly searches.  </p>
<p>There are other options with this tool, you could for example type in your site&#8217;s URL along with specific words or a phrase that you want to narrow your search down to.  There&#8217;s also an advanced search option for this tool, which allows you to specify things like location and language etc&#8230;<br />
This tool is worth playing around with some if you need some help with getting started on writing ads, but I find that its suggestions can be a bit off target.</p>
<h3><a href="http://www.quirk.biz/searchstatus/">SearchStatus FireFox Extension</a></h3>
<p>SearchStatus is the one SEO tool I&#8217;ve found myself using fairly often.  It is a nice little easy to use extension for Firefox.  It can do things like highlight all the no-follow links on a webpage, and has a keyword density analysis feature.  You can also have it highlight all instances of a given keyword on a webpage.  That&#8217;s just a few of the things this tool can do, and I definitely recommend giving it a try.</p>
<h3><a href="https://addons.mozilla.org/en-US/firefox/addon/2007/">FireFox Live PageRank</a></h3>
<p>FireFox sure has a lot of goodies.  This tool quite simply shows the Google page rank for whatever web-page you are currently on.</p>
<p>Well, that&#8217;s all for now, but stay tuned for more!</p>
]]></content:encoded>
			<wfw:commentRss>http://mebdesign.net/2010/09/04/three-seo-tools-to-check-out/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

