<?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>css &#8211; Bogey Web Design</title>
	<atom:link href="https://www.bogeywebdesign.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.bogeywebdesign.com</link>
	<description>A Zebulon, NC based web designer / developer with typical nerd / geek roots</description>
	<lastBuildDate>Sun, 18 Apr 2010 19:55:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
<site xmlns="com-wordpress:feed-additions:1">14475308</site>	<item>
		<title>Do people still use tables for layout?</title>
		<link>https://www.bogeywebdesign.com/2007/05/25/do-people-still-use-tables-for-layout/</link>
					<comments>https://www.bogeywebdesign.com/2007/05/25/do-people-still-use-tables-for-layout/#comments</comments>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Fri, 25 May 2007 23:09:22 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webstandards]]></category>
		<guid isPermaLink="false">http://www.bogeywebdesign.com/2007/05/25/do-people-still-use-tables-for-layout/</guid>

					<description><![CDATA[I am surprised by how many sites still use tables for layout. This was a practice adopted during the &#8220;browser wars&#8221; because of the low acceptance of CSS &#8211; for complex designs the only method available was to use tables. This is no longer the case. Now with web standards and CSS sites can be &#8230; <a href="https://www.bogeywebdesign.com/2007/05/25/do-people-still-use-tables-for-layout/" class="more-link">Continue reading <span class="screen-reader-text">Do people still use tables for layout?</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>I am surprised by how many sites still use tables for layout. This was a practice adopted during the &#8220;browser wars&#8221; because of the low acceptance of CSS &#8211; for complex designs the only method available was to use tables. This is no longer the case. Now with web standards and CSS sites can be designed as they were intended &#8211; using markup for the purposes the creators meant for them: h tags for headers, p tags for paragraphs, div/spans for non-semantic elements and, finally, tables solely for tabular data (think spreadsheets like excel). Then you use the CSS for design and layout of the site.</p>
<p>Getting off my &#8220;web standards&#8221; soapbox for a moment the main reasons you want to avoid using tables for layout is that they bloat your markup. This makes it difficult to change and update your site and it hurts your ratings in search engines. By using the correct tags you naturally tell search engine spiders what your content is &#8211; a keyword rich header, a content rich paragraph or a navigation list. This allows them to better match your site to keyword searches and increase your audience. You also don&#8217;t have to change multiple pages of markup when you want to redesign your site &#8211; you simply edit your CSS and never touch the markup.</p>
<p>There are some instances where you want to, and should, use a table.  When designing the table you still want to keep standards in mind. In the old days you would use inline tags like &#8220;align&#8221; or &#8220;valign&#8221; for td&#8217;s and &#8220;cellpadding&#8221; or &#8220;cellspacing&#8221; for the table itself. Now all of that can be done through the CSS. Simply place a class on the table &#8211; or use the containing element of the table and apply the rules that way.</p>
<p>For example if you have a table inside a div with class &#8220;mySite&#8221; you could vertically align the td&#8217;s simply by using the following rule:</p>
<p>.mySite table td { vertical-align: top }</p>
<p>If you had used valign = &#8220;top&#8221; on all of those elements and then later on you decided you wanted to change them to centered you would have to go back and either do it by hand or via a find and replace. Using CSS and web standards you could simply change that one rule and affect all of the elements. That is the true power of it.</p>
<p>In conclusion, the most important thing to remember is to only use tables for the purpose they were created for &#8211; tabular data. When using them for this also remember to use the least markup possible. No presentational elements should be present &#8211; only semantic elements like content and semantic images (one that add value like logos or photos rather than are used for display like rounded corner containers). Also, if you find yourself placing tables within tables reevaluate your markup &#8211; you&#8217;re probably using this to create layout or presentation and could get away with a single table and CSS to style it.</p>
<p>Random Tidbit: Having trouble selling web standards to your boss?  <a href="http://webstandards.org/learn/articles/web_standards_for_business/" title="Web Standards For Business" target="_blank">The Web Standards Project</a> can help.  Plus they have probably the best example of a site using web standards in every facet &#8211; which makes sense.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bogeywebdesign.com/2007/05/25/do-people-still-use-tables-for-layout/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">86</post-id>	</item>
		<item>
		<title>Designing for cross browser compatibility</title>
		<link>https://www.bogeywebdesign.com/2007/05/24/designing-for-cross-browser-compatibility/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Fri, 25 May 2007 03:00:54 +0000</pubDate>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webstandards]]></category>
		<guid isPermaLink="false">http://www.bogeywebdesign.com/2007/05/24/designing-for-cross-browser-compatibility/</guid>

					<description><![CDATA[One of the best and worst things about the web is the fact that when it comes to your choice of web browser the program you use to access and view the internet &#8211; you have multiple options. From the standard Internet Explorer (PC) or Safari (Mac) to open source projects like Firefox to outsiders &#8230; <a href="https://www.bogeywebdesign.com/2007/05/24/designing-for-cross-browser-compatibility/" class="more-link">Continue reading <span class="screen-reader-text">Designing for cross browser compatibility</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>One of the best and worst things about the web is the fact that when it comes to your choice of web browser the program you use to access and view the internet &#8211; you have multiple options. From the standard Internet Explorer (PC) or Safari (Mac) to open source projects like Firefox to outsiders like Camino and Opera.</p>
<p>The problem is that all of the browsers interpret (X)HTML &#8211; the code websites are written from &#8211; very differently and all of them have their own internal style sheets and form controls. What this basically means is that a site designed in one browser can look vastly different in others especially older or non-standards compliant ones like IE6.</p>
<p>There are 3 main ways to deal with browser compatibility issues &#8211; having the right tools, designing with web standards, and utilizing filters or conditional statements to feed alternative styles to less compliant browsers.</p>
<h3>Tools</h3>
<p>The first step to dealing with cross browser issues is to design in a compliant browser. In most cases, the best one to start with is <a href="http://www.mozilla.com/en-US/firefox/" title="Firefox" target="_blank">Firefox</a>. The simple reason for this is the vast tools it gives a web designer to pinpoint problems and quickly debug code. Two of the best are the <a href="https://addons.mozilla.org/en-US/firefox/addon/60" title="Web Developer's Toolbar" target="_blank">Web Developer&#8217;s Toolbar</a> and <a href="http://https://addons.mozilla.org/en-US/firefox/search?q=firebug&amp;status=4" title="Firebug" target="_blank">Firebug</a>.</p>
<p>The Web Developer&#8217;s Toolbar gives you the ability to edit CSS on page to test fixes quickly, to outline specific elements, disable cache easily to enable testing (since CSS is cached naturally) and many other useful features outside the scope of this article. Firebug is one of the best design tools available allowing you to inspect elements on the page, see the cascade of styles applied to that element to narrow down bugs or rendering issues, and even allows you to edit the (X)HTML on page so that you can quickly test for different scenarios. Both of these will save you a great amount of time while you are designing your site.</p>
<h3>Web Standards</h3>
<p>Web standards is the practice of writing (X)HTML using standards compliant code &#8211; basically utilizing correct tags for elements, using CSS for presentation, markup for content, and limiting the amount of markup to the least amount necessary to complete the task and provide enough &#8220;hooks&#8221; for your CSS. Some of the benefits include improved Search Engine Optimization and the ability to re-design your site later on simply by editing the style sheets. The other benefit is the fact that you use CSS for presentation &#8211; allowing you to deal with presentational issues relating to browsers easily.</p>
<p>After getting your markup done it&#8217;s time to style your site. The easiest way to avoid compatibility issues later is to reset the styles on all elements. This is done because different browsers use different styles for elements. One might naturally put 10px of padding on a p tag and another might put 10px of margin. This is the root cause for many rendering issues found later. <a href="http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/" title="MeyerWeb: Reset Reloaded" target="_blank">A good reset style sheet was posted recently on Eric Meyer&#8217;s site</a>.</p>
<p>If you&#8217;ve done both of the above then you are now setting yourself up to have the least amount of issues possible. Depending on the complexity of your site it might look exactly the same in most of the browsers &#8211; Firefox, Safari, IE7 and (hopefully) IE6. If not, the next step is to utilize filters and conditional statements.</p>
<h3>Filters and conditional statements</h3>
<p>Filters should only be used when nothing else can. If you have designed in Firefox then at this point you should have no issues in that browser. Internet Explorer will be covered in the next paragraph. Opera has no way to filter CSS to it. It typically has few rendering issues that do not pop up in Firefox though and any that do typically you must live with. The only browser not mentioned is Safari which does have a large user base. In your main style sheet you can define styles to target only Safari by using the following rule:</p>
<p>:: root (parameters) { styles }</p>
<p>So now you&#8217;ve covered the most compliant browsers: Firefox, Safari and Opera. The only one left is IE. IE has it&#8217;s own set of filters but utilizing them is not advised because they get messy as you have to override main styles for IE6 then in many cases re-override those for IE7. The best practice is to use conditional statements. You simply define additional style sheets &#8211; for example looking at the source of this site you&#8217;ll see a sheet called mainIE6.css &#8211; and put the rules for those browsers in them. Microsoft has defined conditional statements that can then feed those styles to whatever IE version you define and only IE. The standard way to do this follows:</p>
<p>&lt;!&#8211;[if IE 6]  (style sheet link) &lt;![endif]&#8211;&gt;</p>
<p>Other operators beside if include lt (less than), gt (greater then), lte (less than or equal) and gte (greater than or equal). So lte IE6 would target IE6 and below. The operator gte IE7 would target IE7 and above &#8211; and so on.</p>
<p>Now you have the tools to correct any rendering issues that might pop up.</p>
<p>In conclusion, the best way to deal with cross browser compatibility issues is to limit the chance for them to appear by using the right tools, standards compliant markup and CSS. Some issues will always appear and the few that do can then be handled by using either filters or conditional statements. Remember always to test in multiple browsers to find the issues. At a minimum your suite should include IE6, IE7 and Firefox. If you have access to a Mac then Safari should be included as well.</p>
<p>Random Tidbit: I really like <a href="http://www.seomoz.org/blog" title="SEOmoz" target="_blank">SEOmoz</a>.  I like their article on g<a href="http://www.seomoz.org/blog/guide-to-traffic-from-digg-comments" title="Guide to Traffic From Digg Comments" target="_blank">etting traffic from Digg comments</a> even better &#8211; though I&#8217;m a bigger fan of <a href="http://www.reddit.com" title="Reddit" target="_blank">Reddit</a> personally.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">84</post-id>	</item>
		<item>
		<title>Modular Web Design</title>
		<link>https://www.bogeywebdesign.com/2007/05/01/modular-web-design/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Wed, 02 May 2007 01:38:24 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webstandards]]></category>
		<guid isPermaLink="false">http://www.bogeywebdesign.com/2007/05/01/modular-web-design/</guid>

					<description><![CDATA[So I&#8217;ve been reading a lot about modular web design. Basically what it stands for is creating a web site &#8211; essentially a template &#8211; in such a standards compliant and well thought out manner that redesigning the site later on requires you to only modify the CSS file. It&#8217;s not a new concept &#8211; &#8230; <a href="https://www.bogeywebdesign.com/2007/05/01/modular-web-design/" class="more-link">Continue reading <span class="screen-reader-text">Modular Web Design</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>So I&#8217;ve been reading a lot about modular web design.  Basically what it stands for is creating a web site &#8211; essentially a template &#8211; in such a standards compliant and well thought out manner that redesigning the site later on requires you to only modify the CSS file.  It&#8217;s not a new concept &#8211; it&#8217;s something that was introduced when CSS was created and made famous by the <a href="http://www.csszengarden.com" title="CSS Zen Garden" target="_blank">CSS Zen Garden</a>.  Recently sites have been recreating their own personal zen gardens allowing for quicker redesign turnaround.</p>
<p>It&#8217;s a process I&#8217;ve used since I read up on the Zen Garden. The last 3 sites I&#8217;ve done &#8211; including my own &#8211; were done off a basic template.  In essence it was a wire-frame design.  And now, if I wanted to update any of them &#8211; and I&#8217;ve done small ones from time to time &#8211; I have enough hooks typically to just add or modify CSS rules.  Though this doesn&#8217;t work if you go from a simple design, like my site, to a more complex design &#8211; with things like rounded corners especially.  In those cases you will have to modify the XHTML.</p>
<p>Though it&#8217;s simple it&#8217;s not a process all beginners can copy though.  And it&#8217;s an excellent learning tool.  So later this week I hope to upload 2 templates &#8211; one being the wire-frame and one a more meatier zen garden-esque template.  Stay tuned.</p>
<p>Random Tidbit: Along with Web 2.0 has come a new workplace.  An article I saw on <a href="http://www.alistapart.com" title="A List Apart" target="_blank">A List Apart</a> talked about the &#8220;<a href="http://www.alistapart.com/articles/longhallway" title="The Long Hallway" target="_blank">Long Hallway</a>&#8221; &#8211; basically it talks about how in the new workplace designers/developers can collaborate from home offices around the world, building a team with no set office.  It&#8217;s something I&#8217;ve been thinking about for awhile and very interesting.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">76</post-id>	</item>
		<item>
		<title>Merits of Good Web Design</title>
		<link>https://www.bogeywebdesign.com/2007/04/19/merits-of-good-web-design/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Fri, 20 Apr 2007 02:51:53 +0000</pubDate>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webstandards]]></category>
		<guid isPermaLink="false">http://www.bogeywebdesign.com/2007/04/19/merits-of-good-web-design/</guid>

					<description><![CDATA[Good web design is about reaching the widest possible audience. To reach the widest possible audience you must design with two thoughts in mind web standards and accessibility. Accessible designs allow users to resize text even non-compliant browsers like Internet Explorer 6. They provide alt tags for images, in case someone is using a text &#8230; <a href="https://www.bogeywebdesign.com/2007/04/19/merits-of-good-web-design/" class="more-link">Continue reading <span class="screen-reader-text">Merits of Good Web Design</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>Good web design is about reaching the widest possible audience. To reach the widest possible audience you must design with two thoughts in mind web standards and accessibility.</p>
<p>Accessible designs allow users to resize text even non-compliant browsers like Internet Explorer 6. They provide alt tags for images, in case someone is using a text browser, and those alt tags are descriptive of the images so that those users can gain value from them. They offer a design in which the user can skip navigation and get right to the content both for ease of use and for someone using a text browser. Many people don&#8217;t realize when they&#8217;re designing a site that the source code is how text browsers will read their site so if you have the header, navigation ads and all other non-content related items before the content in the source code than people using those browsers will have to navigate through that on each and every page. Offering them an alternative to that is one of the keys to accessibility.</p>
<p>What many people don&#8217;t realize is that is also how search engines read their sites. So by making your site more accessible you are making it easier for search engines to decipher what exactly is important on your site increasing your rankings and making it easier for them to understand the keywords that your site should rank for.</p>
<p>Web standard based designs function in much the same manner. Designing with web standards means separating content from appearance. Anything that does not deal directly with the content or present some semantic value to your site should be relocated to the CSS. You place all your non-semantic images backgrounds, bullets, etc, colors, font sizes and faces into the CSS. Then your (X)HTML contains only the relevant markup in semantically correct tags H elements for headers, strong for important text, p for paragraphs, em for text you want emphasized, ul/ol for lists, li for list items, dd/dl for definition lists and items, etc. You can then use additional classes and ids on those elements to style your site and match almost any design you can come up with typically with additional div and span tags used sparingly to help provide additional hooks for your CSS.</p>
<p>Designing with web standards also allows you to optimize your site for search engines since you are now declaring to them what your header elements are including hierarchy, what the title of each individual page should be using the title tag, one of the highest ranking SEO tags; and laying out the content with semantic tags so it is able to electronically &#8220;read&#8221; your content and make keyword associations like the human eyes does naturally.</p>
<p>So by practicing good design you are not only naturally increasing your audience by allowing the largest number of users to view your site but also helping to improve your rankings in search engines for terms relevant to your content. In addition, by separating content from appearance you can easily update the look of your site by changing the CSS and potentially adding a few more hooks cutting redesign time drastically.</p>
<p>In conclusion, good design means using accessible designs and standards compliant code. This brings you the largest possible audience, the lowest possible redesign time for future updates, lower bandwidth (because CSS is cached), and search engine optimized code.</p>
<p>Random Tidbit: The <a href="http://www.isoma.net/games/goggles.html" title="Google Maps Flight Sim" target="_blank">Google maps flight sim</a> is pretty cool.  Though I wish they had more cities.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">71</post-id>	</item>
		<item>
		<title>Is IE7 the Solution or More of the Same?</title>
		<link>https://www.bogeywebdesign.com/2007/03/02/is-ie7-the-solution-or-more-of-the-same/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Fri, 02 Mar 2007 06:19:37 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webstandards]]></category>
		<category><![CDATA[internet]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=50</guid>

					<description><![CDATA[I had high hopes as I began to read the early beta versions reviews of IE7 and the numerous fixes they had over IE6.  I had seen some of my work in IE7 and was pleasantly surprised that it worked.  Then I began to dig deeper. The problems began when you have used hacks or &#8230; <a href="https://www.bogeywebdesign.com/2007/03/02/is-ie7-the-solution-or-more-of-the-same/" class="more-link">Continue reading <span class="screen-reader-text">Is IE7 the Solution or More of the Same?</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>I had high hopes as I began to read the early beta versions reviews of IE7 and the numerous fixes they had over IE6.  I had seen some of my work in IE7 and was pleasantly surprised that it worked.  Then I began to dig deeper.</p>
<p>The problems began when you have used hacks or filters to feed specific CSS to IE6.   Now those who use these knew they would potentially cause future problems and that Microsoft approved conditional statements would be the better choice.   However in some cases &#8211; particularly in the instances where you inherit code or time is of the essence and you simply do not have the time to separate them all out &#8211; a designer would opt for the quicker and dirtier solution of a hack.</p>
<p>The problem is that, essentially, not all of the problems from 6 have been fixed in 7.  So you now have the new star hack &#8211; a version of the underscore hack where you can use *property: values to feed a separate CSS to only IE.  Unfortunately, 6 picks up on these as well and typically does not break in the same way &#8211; normally on heights and the box model &#8211; so you must follow with either an underscore hack or the * html property filter &#8211; called the tan and/or holly hack I believe &#8211; to fix 6.  So now you have an extra filter in addition to one you shouldn&#8217;t have/need in the first place.</p>
<p>Again, the short and simple solution is to use the conditional statements.  While semantically they are very inelegant, they will make your life as a designer much easier.  Hopefully IE8, or future updates of 7, will fix these issues.  It is a vast improvement so I am hopeful.  The fact that they copied many of the good elements from the other browsers out there &#8211; including add-ons, a variation of the extensions from firefox &#8211; is a good sign.  I don&#8217;t typically say this, but my hat is off to the Internet Explorer team.</p>
<p>Random Tidbit: Blog writer <a href="http://robert.accettura.com/" title="Robert Accettura's Fun With Wordage">Robert Accettura</a> had some interesting <a href="http://robert.accettura.com/archives/2007/01/20/secrets-in-websites/" title="Secrets In Websites" target="_blank">Secrets in Websites</a>.  Very interesting and conspiratorial.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">50</post-id>	</item>
		<item>
		<title>10 Best Templates to Borrow (i.e. Steal) Ideas From</title>
		<link>https://www.bogeywebdesign.com/2007/01/28/10-best-templates-to-borrow-ie-steal-ideas-from/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Sun, 28 Jan 2007 14:39:55 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webstandards]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=49</guid>

					<description><![CDATA[I will soon, hopefully, be undergoing a new project for a relative of a very close friend of mine.  In doing so &#8211; since the potential clients are not well versed on the Internet, web 2.0 and the cutting edge &#8211; I decided to find a series of templates that would outline several different ideas &#8230; <a href="https://www.bogeywebdesign.com/2007/01/28/10-best-templates-to-borrow-ie-steal-ideas-from/" class="more-link">Continue reading <span class="screen-reader-text">10 Best Templates to Borrow (i.e. Steal) Ideas From</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>I will soon, hopefully, be undergoing a new project for a relative of a very close friend of mine.  In doing so &#8211; since the potential clients are not well versed on the Internet, web 2.0 and the cutting edge &#8211; I decided to find a series of templates that would outline several different ideas and concepts.  It also gave me the idea for this post.  Basically the following list outlines 10 well done templates(or in the case of Zen Garden entries, simply designs) that you, potentially even as an experienced designer, should look to for inspiration, ideas and thievery.  Enjoy.</p>
<p>10.    <a href="http://www.opensourcetemplates.org/templates/nautica01/index.cfm" title="Nautica01" target="_blank">Nautica01</a> &#8211; a simple, clean design.  Smaller width but one of the things I like most about this is the left navigation and the rollovers they do using CSS.</p>
<p>9.    <a href="http://alistapart.com/d/holygrail/example_1.html" title="The Holy Grail of Layouts" target="_blank">The Holy Grail</a> &#8211; basically just a wire-frame but a design I&#8217;ve stolen heavily from.  Not only clean and compliant &#8211; but SEO friendly as well since your content comes first in the markup.</p>
<p>8.    <a href="http://www.csszengarden.com/?cssfile=/007/007.css&amp;page=23" title="Deep Thought" target="_blank">Deep Thought</a> &#8211; a Zen Garden design.  A good example of disjointed design in that the containers don&#8217;t line up.  A good concept not utilized enough in web design.</p>
<p>7.    <a href="http://www.csszengarden.com/?cssfile=037/037.css" title="Pret-a-porter" target="_blank">Pret-a-porter</a> &#8211; another Zen Garden design.  The only example of a horizontal design.  This looks and works awesome in complaint browsers and degrades well in IE.  Horizontal design is not used much in web design &#8211; but when done right it can be very powerful.</p>
<p>6.     <a href="http://www.csszengarden.com/?cssfile=068/068.css" title="Ballade" target="_blank">Ballade</a> &#8211; a final Zen Garden design.  The way they make the graphics &#8211; the steps, bridge, etc &#8211; flow from container to container &#8211; simply brilliant.  A side mention for <a href="http://www.csszengarden.com/?cssfile=/026/026.css&amp;page=20" title="Zunflower" target="_blank">Zunflower</a> since we&#8217;re talking about graphics &#8211; the shading gives the containers depth, making it a very powerful visual design.</p>
<p>5.    <a href="http://www.sixshootermedia.com/ostemplates/plain/" title="Plain 1.0" target="_blank">Plain 1.0</a> &#8211; a <a href="http://www.sixshootermedia.com/" title="Six Shooter Media" target="_blank">Six Shooter Media</a> design.  I actually modified this for one of my first home page designs and learned a lot from the skills of this designer.  Very talented.</p>
<p>4.    <a href="http://www.oswd.org/design/preview/id/2199" title="Andreas01" target="_blank">Andreas01</a> &#8211; an <a href="http://andreasviklund.com/" title="AndreasViklund.com" target="_blank">Andreas Viklund</a> design.  Now hosts his templates on <a href="http://www.opendesigns.org/" title="OpenDesigns.org" target="_blank">OpenDesigns.org</a>, but since I didn&#8217;t see this one on there it&#8217;s from OSWD.  Simple, clean, elegant &#8211; great dropdowns and rollovers, excellent use of a header graphic, nice use of background graphic to give depth and could easily be adapted with the holy grail techniques to shoot the SEO up.  So, by combining concepts from the two, you&#8217;d have an standards compliant, search engine optimized and graphically beautiful site.</p>
<p>3.    <a href="http://www.oswd.org/design/preview/id/2493" title="Andreas09" target="_blank">Andreas09</a> &#8211; another Andreas Viklund.  If you&#8217;ve looked through the WordPress themes, you might recognize this one.  Not only does it change from a 2 column to 3 but it&#8217;s also preloaded with 6 color schemes &#8211; my personal favorite being black.</p>
<p>2.     <a href="http://www.sixshootermedia.com/ostemplates/plain2/" title="Plain 2.0" target="_blank">Plain 2.0</a> &#8211; another Six Shooter Media design.  An update/revision on 1.0.  Bolder graphics, excellent graphics use on the containers, excellent rollovers on the side navigation, and good font and font color choices.  Some web 2.0 flavor and methods as well as a bonus in a skip to content accessibility link.</p>
<p>1.    <a href="http://www.sixshootermedia.com/ostemplates/thin_green_line/" title="Thin Green Line" target="_blank">Thin Green Line</a> &#8211; a final Six Shooter design.   This and Plain 2.0 could switch everyday depending on what mood I&#8217;m in with this currently being my favorite of his templates.  Overall, it&#8217;s not as nice a design as 2.0 but the top navigation with the animated gifs has just got me hooked right now.  As with the other 2 Six Shooter designs this could use some holy grail combination to push the content first and improve the SEO.  I would love to see what he could come up with just stealing the navigation from this and replacing only that part of the design on 2.0.  I just might have to try that in the future.</p>
<p>For more free templates, check out my <a href="http://del.icio.us/dohmsford/templates" title="My del.icio.us: templates tag" target="_blank">del.icio.us</a>.</p>
<p>Random Tidbit: Found this awhile back.  Apparently <a href="http://www.redherring.com/Article.aspx?a=18613&amp;hed=Religion+Sites+Embrace+Web+2" title="Religion Sites Embrade Web2.0" target="_blank">web2.0 is catching on since even some religious sites have used methods from it</a>.  Very interesting.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">49</post-id>	</item>
		<item>
		<title>IE 6 == bad</title>
		<link>https://www.bogeywebdesign.com/2007/01/27/ie-6-bad/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Sun, 28 Jan 2007 01:39:46 +0000</pubDate>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=48</guid>

					<description><![CDATA[So I&#8217;m designing the other day in Firefox and everything is going fine.  My code is clean, simple and rendered correctly.  It looks good and matches the mock I had.  Life is good.  So I fire up Internet Explorer (IE) because, unfortunately, the majority of users still view the web through it.  And not only &#8230; <a href="https://www.bogeywebdesign.com/2007/01/27/ie-6-bad/" class="more-link">Continue reading <span class="screen-reader-text">IE 6 == bad</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>So I&#8217;m designing the other day in Firefox and everything is going fine.  My code is clean, simple and rendered correctly.  It looks good and matches the mock I had.  Life is good.  So I fire up Internet Explorer (IE) because, unfortunately, the <a href="https://www.bogeywebdesign.com" title="Browser Statistics" target="_blank">majority of users still view the web through it</a>.  And not only does it not render anything like Firefox &#8211; my beautiful design now looks ugly and out of whack &#8211; but it is also broken.  So I now have to take time to utilize hacks to make it render similar &#8211; not even alike, just functional &#8211; to compliant browsers.  For those of you that don&#8217;t know hacks are (typically incorrect) snippets of CSS that are read by less than all of the browsers &#8211; I have been using the <a href="http://www.communitymx.com/content/article.cfm?page=2&amp;cid=C37E0" title="The Holly Hack" target="_blank">Holly hack</a> as of late.</p>
<p>As a fan of web standards and accessibility this grates on me.  Not only because IE makes it so difficult to make things accessible unless you use em&#8217;s instead of px&#8217;s, for one, but also because I spend 25% of my time or more just fixing things that shouldn&#8217;t be there in the first place.  That&#8217;s time wasted that could be spent making my designs more clean or adding new features.</p>
<p>IE6 has gone from the top browser (many years ago) to now being that uncle that you&#8217;re embarrassed to have people meet.  I have heard <a href="http://www.informationweek.com/news/showArticle.jhtml?articleID=196901142" title=" Despite 100 Million IE 7 Installs, Microsoft's Browser Still Loses Ground " target="_blank">how many people have adopted IE7</a> &#8211; which I haven&#8217;t used much but is much closer to being compliant &#8211; but when will it finally be the staple?  When will I stop having to code for IE6?</p>
<p>Unfortunately, professionally, I can&#8217;t stop yet.  Depending on which statistics you look at &#8211; compare the earlier ones to <a href="http://marketshare.hitslink.com/report.aspx?qprid=6" title="Browser Version Market Share for December, 2006 " target="_blank">these for example</a> &#8211; IE6 is still used by 42-61% of the users out there.  That kind of majority you can&#8217;t ignore as a business.  As an independent designer though, I can.  I&#8217;m drawing a line in the sand.  I will be soon upgrading my designing computer(s) to IE7.  After that, none of my templates will be tested in anything lower than 7.  So if you want it to work in 6 and it doesn&#8217;t &#8211; you&#8217;re on your own.  I realize that this may hurt me for sites I list my templates on &#8211; like <a href="http://www.oswd.org/" title="Open Source Web Design" target="_blank">OSWD</a> which just recently got around to uploading the (very bad looking, since I was much more inexperienced then) <a href="http://www.oswd.org/user/profile/id/9121" title="My OSWD templates" target="_blank">templates</a> I sent them over 8 months ago &#8211; but I simply have stopped caring.  Designing for IE6 is like Microsoft designing a new 360 game and testing it on the original Xbox to make sure it still works &#8211; they wouldn&#8217;t.</p>
<p>So that&#8217;s my line in the sand.  Hopefully more designers will join me and more users will become aware of the fact that there really is better out there.  <a href="http://www.mozilla.com/en-US/" title="Download Firefox 2" target="_blank">Firefox</a> and <a href="http://www.opera.com/" title="Download Opera 9" target="_blank">Opera</a>(which I personally prefer) are both excellent browsers and if the user is really sold on IE then <a href="http://www.microsoft.com/windows/ie/default.mspx" title="Download IE 7 if you dare" target="_blank">7 is a free update</a>.</p>
<p>I will also be sending OSWD 2-3 more templates (hopefully) in the next week.  No telling when they&#8217;ll go up though.  Don&#8217;t judge me for the work currently there &#8211; you&#8217;ve <a href="https://www.bogeywebdesign.com" title="Bogey Web Design - version 2.0" target="_blank">seen</a> that I can do much better now.</p>
<p>Random Tidbit:  Since I&#8217;m harping on Microsoft, I wanted to share an interesting article about <a href="http://apcmag.com/4891/a_world_without_microsoft" title="a world without Microsoft?" target="_blank">how the world would be if Microsoft was no longer around</a>.  Don&#8217;t think I&#8217;ve shared that one yet.  Also, an excellent article on 456 Berea St. citing <a href="http://www.456bereastreet.com/archive/200512/ten_reasons_to_learn_and_use_web_standards/" title="Ten reasons to learn and use web standards" target="_blank">10 reasons to learn and use web standards</a>.  As someone who has had to explain why standards are important to both clients and employers, I kind of wish I had this article 7 months ago.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">48</post-id>	</item>
		<item>
		<title>Keeping Accessibility In Mind</title>
		<link>https://www.bogeywebdesign.com/2007/01/15/keeping-accessibility-in-mind/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Mon, 15 Jan 2007 09:05:41 +0000</pubDate>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=46</guid>

					<description><![CDATA[I saw this article awhile back and meant to blog about it, but haven&#8217;t had the time.  In working on my site redesign though it struck my eye as I was perusing my links and felt the urge to share it. Recently, Target was sued in a class action suit because their site was inaccessible &#8230; <a href="https://www.bogeywebdesign.com/2007/01/15/keeping-accessibility-in-mind/" class="more-link">Continue reading <span class="screen-reader-text">Keeping Accessibility In Mind</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>I saw this article awhile back and meant to blog about it, but haven&#8217;t had the time.  In working on my site redesign though it struck my eye as I was perusing my links and felt the urge to share it.</p>
<p>Recently, <a href="http://dailycal.org/sharticle.php?id=21297" title="Court Denies Target Corp. Request to Dismiss Suit" target="_blank">Target was sued in a class action suit</a> because their site was inaccessible to the vision impaired.  It has been a law for awhile now that web sites, like other facilities open to the public, must be accessible to all.  When doing a redesign you must keep in mind not only the various browsers and screen resolutions it&#8217;s users might have &#8211; but also other mitigating factors that might cause them to be unable to use your work as intended.</p>
<p>I am not well versed on the subject, but I would check out <a href="http://www.molly.com" title="Molly.com" target="_blank">Molly&#8217;s</a> blog &#8211; she has done a lot for the web standards and accessibility community.</p>
<p>Random Tidbit: In further perusing my links I found another link from <a href="http://juicystudio.com/article/validity-accessibility.php" title="Validity and Accessibility" target="_blank">Juicy Studio talking about Validity and Accessibility</a> &#8211; well worth a look and a bookmark on <a href="http://del.icio.us" title="Del.icio.us" target="_blank">del.icio.us</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">46</post-id>	</item>
		<item>
		<title>A Tale of two Posts</title>
		<link>https://www.bogeywebdesign.com/2006/12/28/a-tale-of-two-posts/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Thu, 28 Dec 2006 06:44:15 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[internet]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=42</guid>

					<description><![CDATA[I was perusing through my RSS feeds the other day and came upon two posts that caused polar opposite feelings for the future of web design in relation to web standards, CSS and what I hope to do with my life. The first was Smashing Magazine&#8217;s 50 Most Beautiful CSS-Based Web Designs in 2006.   &#8230; <a href="https://www.bogeywebdesign.com/2006/12/28/a-tale-of-two-posts/" class="more-link">Continue reading <span class="screen-reader-text">A Tale of two Posts</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>I was perusing through my RSS feeds the other day and came upon two posts that caused polar opposite feelings for the future of web design in relation to web standards, CSS and what I hope to do with my life.</p>
<p>The first was <a href="http://http://smashingmagazine.com/2006/12/19/50-beautiful-css-based-web-designs-in-2006" title="Smashing Magazine's 50 Most Beautiful CSS-Based Web Designs in 2006" target="_blank">Smashing Magazine&#8217;s 50 Most Beautiful CSS-Based Web Designs in 2006</a>.   Seeing some of the beautiful, cutting edge and still standards compliant sites that people can design is uplifting.  I can learn a great deal and draw lots of inspiration from more then a few on the list.  I thought it might be a sign that the days of the past &#8211; nested table designs, tag soup and such &#8211; might finally be starting to move into the past.</p>
<p>Unfortunately I came upon a separate post that leans 180 degrees the other way &#8211; <a href="http://manwithnoblog.com/2006/12/30/are-web-standards-bad-for-web-business/" title="Are Web Standards Bad for Business" target="_blank">Are Web Standards Bad for Business</a>.  I had hoped this was a post written by someone new to the field or ignorant of the benefits.  This was not to be.  The writer is well versed on what standards compliance means and, in fact, someone who practices designing compliant sites.</p>
<p>Coming from a site that had a lot of &#8220;legacy&#8221; code that I spent a lot of time upgrading &#8211; as well as my as yet limited skills could &#8211; to more compliant CSS/XHTML form, a lot of the points he made hit home.  Sometimes you have no control.  Sometimes what the customer buys before you&#8217;re even involved handcuffs you with regard to design and no matter how hard you fight you can&#8217;t always win.</p>
<p>It&#8217;s hard enough setting yourself apart from the pack when (quote from same <a href="http://manwithnoblog.com/" title="Man with no blog" target="_blank">blog</a>) &#8220;print based designers with no desire or experience in web standards design can churn out “pretty” cookie cutter web sites via using various automated software product.&#8221;  To have to teach about why standards compliance are worth it as well just makes it that much more difficult.</p>
<p>If <a href="http://www.molly.com/" title="Molly.com" target="_blank">Molly</a> and <a href="http://meyerweb.com/" title="meyerweb.com" target="_blank">Meyer</a> can&#8217;t come up with a better solution, I don&#8217;t think I can.  I just hope that I see more of the former in the future, rather then the latter.</p>
<p>Random Tidbit: Since this post is already talking about explaining programming/design to the non-programmer/designer I wanted to list an interesting post along the same line.  Check out <a href="http://www.joelonsoftware.com/articles/fog0000000356.html" title="The Iceberg Secret, Revealed" target="_blank">The Iceberg Secret, Revealed</a> on <a href="http://www.joelonsoftware.com/" title="Joel on Software" target="_blank">Joel on Software</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">42</post-id>	</item>
		<item>
		<title>CSS: Avoiding Div-itis</title>
		<link>https://www.bogeywebdesign.com/2006/11/28/css-avoiding-div-itis/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Tue, 28 Nov 2006 17:43:46 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=35</guid>

					<description><![CDATA[As a new web designer one of the things I was guilty of at first was a condition called &#8220;div-itis.&#8221;  This is a common affliction of even some of the more advanced designers out there &#8211; usually in their case because of a lack of time to make the code elegant &#8211; but most typically &#8230; <a href="https://www.bogeywebdesign.com/2006/11/28/css-avoiding-div-itis/" class="more-link">Continue reading <span class="screen-reader-text">CSS: Avoiding Div-itis</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>As a new web designer one of the things I was guilty of at first was a condition called &#8220;div-itis.&#8221;  This is a common affliction of even some of the more advanced designers out there &#8211; usually in their case because of a lack of time to make the code elegant &#8211; but most typically of people who used HTML in the past and now try to bring those skills to bear using XHTML and CSS.</p>
<p>Div-itis&#8217; symptoms include code overrun with unnecessary divs &#8211; usually 3 or more levels thick &#8211; that simulate &#8211; in essence &#8211; the old table based code we used to write.  This causes &#8211; as with tables &#8211; higher page weight, lower SEO and a difficulty in updating this code later on down the road &#8211; since it is overly and unnecessarily complicated.</p>
<p>Fortunately, this affliction can be cured rather easily.  The way I cured it was reading books on CSS &#8211; and not just any books will do.  I personally recommend books by <a href="http://meyerweb.com/eric/writing.html" title="meyerweb.com: Eric's Writing" target="_blank">Eric Meyers</a> and the <a href="http://www.amazon.com/exec/obidos/ASIN/0321303474/mezzoblue-20/" title="Amazon.com: The Zen of CSS Design: Visual Enlightenment for the Web" target="_blank">Zen of CSS Design book</a>.  Meyers has several good books but I would start with <a href="http://www.ericmeyeroncss.com/" title="Eric Meyer on CSS" target="_blank">Eric Meyer on CSS</a> and <a href="http://more.ericmeyeroncss.com/" title="More Eric Meyer on CSS" target="_blank">More Eric Meyer on CSS</a>.  One those are complete the book <a href="http://meyerweb.com/eric/books/css-tdg/" title="The Definitive Guide" target="_blank">Cascading Style Sheets: The Definitive Guide</a> should become your best friend.</p>
<p>One of the most simple methods these two books relate &#8211; and forgive me for not recalling the technical term off the top of my head, feel free to comment with it &#8211; is using 2 or more selectors in your CSS to narrow in on the specific XHTML you want to style &#8211; rather then wrapping it in a containing div.</p>
<p>For example, say you have a linked list on your page that you want to style different from other linked lists &#8211; say because it&#8217;s a list of your recent work and you want it to stand out.  Instead of wrapping an unnecessary div around the list you want to style and using that as the anchor, you could simply add an id or class &#8211; if you&#8217;re going to use this more then once &#8211; to the ul and then style off of that.  Example:</p>
<p>Old (div-itis) rule:    div#recent li { some styles }</p>
<p>New rule:                   ul#recent li {some styles}</p>
<p>Both have the same effect, but one saves you a div.  This seems like a small thing, but what if you could save 10 divs on each page.  And your website is 100 pages, receives 1,000 visitors a month and the average visitor views 8 pages.  Say those 10 divs cost you 1KB.  1KB * 8 pages * 1,000 visitors = 8,000 KB of saved bandwidth.  7-8MB of bandwidth might not seem like much, but on a commercial site where each page it might save 2-3KB and receive 100,000 visitors &#8211; it can add up quickly.</p>
<p>On a recent site I did you can see some more examples of this.  I used a total of 4 divs, if I&#8217;m not mistaken, to layout the template.  Then styled off of those.  It&#8217;s a simple site, so you&#8217;ll be able to see how it works rather quickly.  The site can be <a href="http://www.lakeshorebulldogs.com/" title="LakeShore Bulldogs" target="_blank">found here</a> and this is the <a href="http://www.lakeshorebulldogs.com/styles/lakeshore.css" title="LakeShore Bulldogs stylesheet" target="_blank">style sheet</a> that goes with it.</p>
<p>Random Tidbit: Don&#8217;t think you need to make your site <a href="http://www.w3.org/TR/WCAG10/wai-pageauth.html" title="Web Content Accessibility Guidelines 1.0" target="_blank">accessible</a>?  Check out <a href="http://dailycal.org/sharticle.php?id=21297" title="Court Denies Target Corp. Request to Dismiss Suit" target="_blank">this article about a recent lawsuit against Target</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">35</post-id>	</item>
		<item>
		<title>SEO: What I Learned as a Web Designer</title>
		<link>https://www.bogeywebdesign.com/2006/11/24/seo-what-i-learned-as-a-web-designer/</link>
					<comments>https://www.bogeywebdesign.com/2006/11/24/seo-what-i-learned-as-a-web-designer/#comments</comments>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Fri, 24 Nov 2006 19:35:08 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[web design]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=34</guid>

					<description><![CDATA[One of the most important things for a site is for it to be seen by as many people that would be interested in it as possible.  Typically, there are two ways to facilitate this happening.  One is paid advertising &#8211; buying search engine terms in Google, Yahoo, or other search engines and/or buying space &#8230; <a href="https://www.bogeywebdesign.com/2006/11/24/seo-what-i-learned-as-a-web-designer/" class="more-link">Continue reading <span class="screen-reader-text">SEO: What I Learned as a Web Designer</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>One of the most important things for a site is for it to be seen by as many people that would be interested in it as possible.  Typically, there are two ways to facilitate this happening.  One is paid advertising &#8211; buying search engine terms in Google, Yahoo, or other search engines and/or buying space to promote your site on other sites that attract the same audience as you.  The second is Search Engine Optimization, SEO.  Even with paid advertising this is necessary because it is a free way to improve your natural rankings in search engine listings for the keywords you feel are important to your site.</p>
<p>What is SEO and how do you improve it for your site though?  Simply put, SEO is designing your site so that it is easier for search engines to read it &#8211; and so quicker for them to understand where you should go in their directory.  Ironically, by making it more search engine friendly you typically also make your site more compliant and easier to update and validate.</p>
<p>The first step to improving your SEO can be done by anyone &#8211; provide rich content.  If your site/post has the relevant keywords related to the topic you want to be listed in and contains content related to that subject that people will find interesting and want to read &#8211; then you&#8217;ve taken the first step.  This has nothing to do with XHTML, CSS, PHP or any web technology.  I&#8217;m talking about the simple text you place in between all those wonderful tags.</p>
<p>The second step is to understand the hierarchy of your site.  This varies slightly based on the search engine and some people will disagree with what I say about meta tags &#8211; but this is based upon reading many books and sites on SEO, as well as first hand experience.  In regards to meta tags &#8211; by all means fill them in.  But because of abuse, they are very low weight &#8211; i.e. lower in the hierarchy &#8211; and do not improve your ranking much.  The highest level is the title tag &#8211; what will appear in the bar at the top of the browser.  You should choose something that relates to the topic and, preferably, provides a 5-10 word summary of what your site/post is about.  Following that is the h tags &#8211; h1-h6 respectively &#8211; which are weighted accordingly &#8211; h1 is higher then h2 and so on.  Be careful not to abuse these by using them all over the page &#8211; as that can be considered &#8220;keyword stuffing&#8221; or other not nice words that mean search engines will not like you.  Finally, there is the rest of the stuff in the hierarchy &#8211; p, strong, ul, li and all the other wonderful tags.  They have some varying weights but not really enough to be worth talking about.  The easiest way to implement this step is to think of your site like an outline for a paper you&#8217;re doing in school.  You have a title, some subject and sub-subject headers (h1, h2, etc) and then the meat &#8211; paragraphs of content.  Only in this case, you&#8217;re not summarizing in the paragraphs, but placing rich content.</p>
<p>The final step is CSS.  One of the reasons CSS was proposed and implemented was that web pages had become bowls of &#8220;tag soup&#8221; &#8211; what you saw looked nice, but beneath that the HTML was loaded with misused tags, presentational information and other things that made it difficult to edit and bloated the page weight.  CSS is very simply a way to separate your presentation from your content.  Because of browser quirks this is not always possible &#8211; though the biggest perpetrator, Internet Explorer, is looking to correct this with IE7.  In an ideal world, the XHTML for your site would contain the basics &#8211; your plain text content, basic tags (p, h1-6, ul, li, etc), some id and class declarations and that&#8217;s it.  Only the things that describe your content &#8211; nothing dealing with presentation like colors, fonts, or even div/spans.  This is typically never possible because at a minimum you usually need a few div&#8217;s to mold your design &#8211; but it&#8217;s nice to dream.  Your CSS file would then hold the actual design of the site &#8211; where elements should reside on the page, what color and typeface fonts/headers should be, background graphics, etc.  You could then easily edit the look of your entire site simply by editing your CSS &#8211; potentially a single file in a simpler design.  This is the true power of CSS &#8211; not only will it allow more interested users to see your site (by helping your SEO) but it will also allow you to change your site quickly and easily whenever you want.</p>
<p>Once you understand the basics, you can start to see the potential.  One of the more powerful tools is to place your content first in the HTML because search engines only read the HTML and give more weight to what they read first &#8211; so you would rather have them see your content first then say your navigation or sometimes even your header.  The problem is most sites don&#8217;t want their content to <em>display</em> first &#8211; they want a header with site branding and usually some left navigation &#8211; though right navigation is typically better because the user&#8217;s mouse resides near the scroll bar, so having it on the right means they have to move the mouse less, improving their experience and making it more accessible for them.  With CSS you can have both.  I did this for the sites I used to work on &#8211; 2 mid-size employment sites &#8211; and have even created a few free templates on <a href="https://www.bogeywebdesign.com" title="Bogey Web Design - my portfolio and personal site" target="_blank">my site</a> &#8211; feel free to steal them.</p>
<p>I hope that you got something out of this.  If you have any questions, comments, or criticisms feel free to leave a comment or, if you prefer, <a href="mailto:bwdblog@bogeywebdesign.com" title="E-mail me" target="_blank">e-mail</a> me.</p>
<p>Random Tidbit:  Want to have a neat Web 2.0 tool to track your competitors with?  Check out <a href="http://www.techcrunch.com/2006/10/04/competitous-track-your-competition-online/" title="Competito.us" target="_blank">this article on Competitio.us</a>.  The article is old, but the site still appears to be free to use.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bogeywebdesign.com/2006/11/24/seo-what-i-learned-as-a-web-designer/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">34</post-id>	</item>
		<item>
		<title>Sites a Web Designer Should Know (or ‘I wish I had thought of this first’) Part 2</title>
		<link>https://www.bogeywebdesign.com/2006/09/30/sites-a-web-designer-should-know-or-%e2%80%98i-wish-i-had-thought-of-this-first%e2%80%99-part-2/</link>
					<comments>https://www.bogeywebdesign.com/2006/09/30/sites-a-web-designer-should-know-or-%e2%80%98i-wish-i-had-thought-of-this-first%e2%80%99-part-2/#comments</comments>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Sat, 30 Sep 2006 08:07:29 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[internet]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=30</guid>

					<description><![CDATA[They say patience is a virtue and absence makes the heart grow fonder, but you just want your links, right? So here goes: Templates Intensivstation &#8211; XHTML and CSS 2 templates that start you off in pretty much any basic design you would want to use. Mollio &#8211; another set of basic templates that you &#8230; <a href="https://www.bogeywebdesign.com/2006/09/30/sites-a-web-designer-should-know-or-%e2%80%98i-wish-i-had-thought-of-this-first%e2%80%99-part-2/" class="more-link">Continue reading <span class="screen-reader-text">Sites a Web Designer Should Know (or ‘I wish I had thought of this first’) Part 2</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>They say patience is a virtue and absence makes the heart grow fonder, but you just want your links, right?  So here goes:</p>
<h3>Templates</h3>
<ul>
<li><a TARGET="_blank" TITLE="Intensivstation" HREF="http://www.intensivstation.ch/en/templates/">Intensivstation</a> &#8211; XHTML and CSS 2 templates that start you off in pretty much any basic design you would want to use.</li>
<li><a TARGET="_blank" TITLE="Mollio" HREF="http://www.mollio.org/">Mollio</a> &#8211; another set of basic templates that you can download and play around with.  A good learning tool if you&#8217;re new to CSS and XHTML.</li>
<li><a TARGET="_blank" TITLE="Layout Gala" HREF="http://blog.html.it/layoutgala/">Layout Gala</a> &#8211; the best of the three, especially if you have a grasp of CSS.  Takes the same markup and applies different CSS similar to <a TARGET="_blank" TITLE="CSS Zen Garden" HREF="http://www.csszengarden.com">the CSS Zen Garden</a>.  Excellent for setting up how you want content and links to appear for SEO purposes.</li>
</ul>
<h3>Inspiration</h3>
<ul>
<li><a HREF="http://www.cssbeauty.com/" TITLE="CSS Beauty" TARGET="_blank">CSS Beauty</a> &#8211; excellent design of the site itself, lists of CSS sites, CSS jobs and news as well.</li>
<li>Stylegala &#8211; similar to CSS beauty.</li>
<li><a HREF="http://cssvault.com/" TITLE="CSS Vault" TARGET="_blank">CSS Vault</a></li>
<li><a HREF="http://www.csstux.com/" TITLE="CSS Tux" TARGET="_blank">CSS Tux</a> &#8211; labeled as the &#8220;best dressed&#8221; sites on the web, some nice designs &#8211; including the site itself</li>
<li><a HREF="http://www.w3csites.com/" TITLE="W3C Sites" TARGET="_blank">W3C Sites</a> &#8211; sites that conform to the W3C standards &#8211; beauty and standards compliance hand in hand.</li>
</ul>
<h3>CSS</h3>
<ul>
<li><a HREF="http://www.webcredible.co.uk/user-friendly-resources/css/css-tricks.shtml" TITLE="CSS Tricks" TARGET="_blank">Ten CSS Tricks You May Not Know</a> &#8211; some cool stuff that I hadn&#8217;t heard of at the time for simply didn&#8217;t use enough.</li>
<li><a HREF="http://alvit.de/css-showcase/css-navigation-techniques-showcase.php" TITLE="CSS Navigation Techniques" TARGET="_blank">CSS Navigation Techniques</a> &#8211; besides allowing users to navigate your site and improving your SEO, navigation can be a strong aesthetic part of your site.</li>
<li><a HREF="http://css.maxdesign.com.au/" TARGET="_blank">Max Design</a> &#8211; list of resources, including Listamatic.</li>
<li><a HREF="http://www.barelyfitz.com/screencast/html-training/css/positioning/" TITLE="Learn CSS Positioning in Ten Steps" TARGET="_blank">Learn CSS Positioning in Ten Steps</a> &#8211; everything you need to know about positioning</li>
<li><a HREF="http://www.positioniseverything.net/" TITLE="Position is Everything" TARGET="_blank">Position is Everything</a> &#8211; for when everything you know about positioning doesn&#8217;t work.  Hopefully, IE7 will make this site obsolete.</li>
<li><a HREF="http://www.soxiam.com/Notes/CSSTools" TITLE="CSS Tools" TARGET="_blank">CSS Tools</a> &#8211; another list of CSS tools, much longer then mine.  Some redundancy but some really cool stuff I didn&#8217;t list.</li>
<li><a HREF="http://meyerweb.com/eric/css/edge/" TITLE="css/edge" TARGET="_blank">css/edge</a> &#8211; Eric Meyer doing CSS.  Do I need to say more?</li>
<li><a HREF="http://cssplay.co.uk/index.html" TITLE="CSS Play" TARGET="_blank">Stu Nicholls | CSS Play</a> &#8211; I have mentioned I have a love/hate relationship with this site.  It has dozens of cool ideas that I borrow (steal) and that cause me to expand my understanding and abilities with CSS.  I hate it though because everytime I think I&#8217;ve come up with a new idea in CSS&#8230; I find he&#8217;s already thought of it and 3 offshoots.  Highly recommended</li>
</ul>
<p>I hope you found something you didn&#8217;t know before and something that inspires you to make the web a more beautiful, CSS enabled, standards compliant and semantically correct place.  Comments, constructive criticisms and flames welcome.  Spam can be directed <a TARGET="_blank" TITLE="Yankees Suck" HREF="http://www.yankeessuck.com/">here</a>.</p>
<p>Random Tidbit: WordPress does not like Opera at all.  Something in the Ajax or Javascript just hates it.  I&#8217;ve tried identifying and masking as Firefox and even Explorer, still no go.  Someone should work on that since it&#8217;s rather annoying.  I like Firefox and it&#8217;s not that hard to switch over I guess, but I would think that it wouldn&#8217;t be that hard to get it to work in Opera compared to say Explorer.  But it could be I&#8217;m just not that smart.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bogeywebdesign.com/2006/09/30/sites-a-web-designer-should-know-or-%e2%80%98i-wish-i-had-thought-of-this-first%e2%80%99-part-2/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">30</post-id>	</item>
		<item>
		<title>Sites a Web Designer Should Know (or &#8216;I wish I had thought of this first&#8217;)</title>
		<link>https://www.bogeywebdesign.com/2006/09/20/sites-a-web-designer-should-know-or-i-wish-i-had-thought-of-this-first/</link>
					<comments>https://www.bogeywebdesign.com/2006/09/20/sites-a-web-designer-should-know-or-i-wish-i-had-thought-of-this-first/#comments</comments>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Wed, 20 Sep 2006 23:04:31 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[internet]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=29</guid>

					<description><![CDATA[Awhile back I did a post on my personal top ten sites. It was dugg and relabeled as sites a web developer should know. This was not my intention since there were many sites on it that have nothing to do with web design, CSS or SEO. But it was one of my most popular &#8230; <a href="https://www.bogeywebdesign.com/2006/09/20/sites-a-web-designer-should-know-or-i-wish-i-had-thought-of-this-first/" class="more-link">Continue reading <span class="screen-reader-text">Sites a Web Designer Should Know (or &#8216;I wish I had thought of this first&#8217;)</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>Awhile back I did a post on my personal top ten sites.  It was dugg and relabeled as sites a web developer should know.  This was not my intention since there were many sites on it that have nothing to do with web design, CSS or SEO.  But it was one of my most popular posts &#8211; probably not for my superb writing skills, more likely interest from the digg post.</p>
<p>I am still relatively new at web design but I thought I would share some of the sites I use regularly in the hopes that experienced designers might find something new and new designers might start out correctly &#8211; that is, building CSS based, SEO friendly and standard compliant sites.  Since there is a relatively large number of things I want to list, this will probably be broken up over several posts.</p>
<h3>SEO</h3>
<ul>
<li><a href="http://www.dlperry.com/what_search_engine_spiders_see.html" title="dlperry.com - What Search Engine Spiders See" target="_blank">See how your site looks to search engines</a> &#8211; input your site, choose your paramaters and it will show you what order your content shows up in, your keywords and keyword density, as well as headers, title, meta tags and other SEO elements of your page.  A good way to make sure your page is being read the way you want it to.</li>
<li><a href="http://www.site-reference.com/articles/Search-Engines/Getting-Your-Site-Indexed-Before-You-Launch.html" title="Getting your site indexed before you launch" target="_blank">Getting your site indexed before you launch</a> &#8211; this article brings up a good point.  Many sites talk about how to improve your SEO after the fact, but as many designers know &#8211; by doing things right from the beginning, it&#8217;ll make your life and job a lot easier.  This offers several simple ideas to be indexed before you&#8217;re even done.</li>
<li><a href="http://www.456bereastreet.com/archive/200502/basics_of_search_engine_optimisation/" title="Basics of SEO" target="_blank">Basics of SEO</a> &#8211; 456 Berea St. offers an excellent list of things to do &#8211; keep your title (the most important SEO element) in mind and utilize it correclty, use real headings, write good content (and keep it fresh), use good (semantic and lean) markup, and keep in mind there are no shortcuts.  It includes more information and ideas then I mention here &#8211; I highely recommend it even if you know a lot about SEO, you might learn something new.</li>
<li><a href="http://www.seomoz.org/beginners.php" title="Beginner's Guide to SEO" target="_blank">Beginner&#8217;s Guide to SEO</a> &#8211; <a href="http://www.seomoz.org/" title="SEOmoz" target="_blank">SEOmoz</a> is an entire site dedicated to SEO and this beginner&#8217;s guide is actually pretty comprehensive.</li>
</ul>
<h3>Markup</h3>
<ul>
<li><a href="http://www.w3schools.com/" title="W3schools Online Web Tutorials" target="_blank">W3Schools</a> &#8211; a free online school of the basics of HTML, CSS, JavaScript and other web languages.  Very basic, but a good resource.</li>
<li><a href="http://www.webdesignfromscratch.com/" title="Web Design from Scratch" target="_blank">Complete Guide to Web Design</a> &#8211; An excellent, complete guide to building web pages.  Easy to read and well written.  Highetly recommended.</li>
</ul>
<h3>Web Standards</h3>
<ul>
<li><a href="http://validator.w3.org/" title="W3 Validator" target="_blank">W3c Validator</a> &#8211; the official validator.  You can&#8217;t have standard compliant code unless it&#8217;s valid (ad servers, CMS, etc. aside).</li>
<li><a href="http://blog.outer-court.com/archive/2006-06-23-n15.html" title="9 Ways to Misunderstand Web Standards" target="_blank">9 Ways to Misunderstand Web Standards</a> &#8211; Some common misunderstandings that still go on today.</li>
<li><a href="http://www.hotdesign.com/seybold/" title="Why Tables for Layouts is Stupid" target="_blank">Why Tables for Layouts is Stupid</a> &#8211; An online slide show from Seybold 2003.  Simple and easy to understand.  A <a href="http://www.hotdesign.com/seybold/32online.html" title="Resources" target="_blank">great list of resources</a> near the end.  Included because it&#8217;s amazing to me how many table based layouts there still are out there &#8211; including many of those free template sites or page builders you find.  Tables have their uses &#8211; but bloating markup and killing SEO is not one of them.</li>
<li><a href="http://www.456bereastreet.com/lab/developing_with_web_standards/" title="Designing with Web Standards" target="_blank">Designing with Web Standards</a> &#8211; another great 456 Berea St. article.  A comprehensive guide to designing standard compliant sites.  A little hard to understand for beginners, but a source I highely recommend.</li>
</ul>
<p>That&#8217;s it for today.  Next time: CSS, Inspiration and Template sites and color/graphics sites (most likely &#8211; subject to change).  A great, and much more extensive, resource list can be found at <a href="http://www.alvit.de/handbook/" title="The Web Developer's Handbook" target="_blank">the web developer&#8217;s handbook</a> &#8211; some of the sites listed here are on there and I have mentioned this site before.  My only complaint would be that no descriptions are provided.  However, on a list that large, descriptions would make it almost unreadable.</p>
<p>Random Tidbit: Sticking with the list theme &#8211; here are three great <a href="http://del.icio.us" title="Del.icio.us" target="_blank">del.icio.us</a> links:</p>
<ul>
<li><a href="http://davidbrunelle.com/2006/09/05/become-a-delicious-power-user/" title="Become a del.icio.us power user" target="_blank">Become a del.icio.us power user</a></li>
<li><a href="http://slackermanager.com/2005/12/the_several_hab.html" title="The Several Habits of Wildly Successful del.icio.us Users" target="_blank">The Several Habitsof Wildly Successful del.icio.us users</a></li>
<li><a href="http://theory.isthereason.com/?p=499" title="From Del.icio.us to WordPress: How to automatically post daily links" target="_blank">From Del.icio.us to WordPress: How to automatically post daily links</a> &#8211; this is something I might start doing, what do you think?</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bogeywebdesign.com/2006/09/20/sites-a-web-designer-should-know-or-i-wish-i-had-thought-of-this-first/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">29</post-id>	</item>
		<item>
		<title>Stylish &#8211; the best Mozilla Extension</title>
		<link>https://www.bogeywebdesign.com/2006/09/04/stylish-the-best-mozilla-extension/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Tue, 05 Sep 2006 03:55:02 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[internet]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=25</guid>

					<description><![CDATA[So I know I&#8217;ve been harping on Opera a lot lately, but I figured I would devote some time to what has recently and quickly become my favorite Mozilla extension &#8211; Stylish. Now I make regular use of &#8211; and highly recommend &#8211; both the web developer&#8217;s toolbar and the IE tab extensions. If you &#8230; <a href="https://www.bogeywebdesign.com/2006/09/04/stylish-the-best-mozilla-extension/" class="more-link">Continue reading <span class="screen-reader-text">Stylish &#8211; the best Mozilla Extension</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>So I know I&#8217;ve been harping on <a href="http://www.opera.com" title="Opera Web Browser" target="_blank">Opera</a> a lot lately, but I figured I would devote some time to what has recently and quickly become my favorite Mozilla extension &#8211; <a href="https://addons.mozilla.org/firefox/2108/" title="Stylish extension for Mozilla" target="_blank">Stylish</a>.  Now I make regular use of &#8211; and highly recommend &#8211; both the <a href="https://addons.mozilla.org/firefox/60/" title="Web Developer's Toolbar extension for Mozilla" target="_blank">web developer&#8217;s toolbar</a> and the <a href="https://addons.mozilla.org/firefox/1419/" title="IE Tab extension for Mozilla" target="_blank">IE tab</a> extensions.  If you don&#8217;t already have those and you do any sort of web designing at all &#8211; get them.  The IE tab lets you open an Explorer tab in Mozilla for testing &#8211; so less windows open in your system &#8211; and the web developer&#8217;s toolbar has all kinds of neat tools, only some of which I&#8217;ve mastered, including outlining elements, giving image information and a built in ruler.</p>
<p>Going back to Stylish though, it is an extension that allows you to create page specific style sheets for sites you visit a lot.  Why would you want to do something like that?  Well, for one, you can find styles that <a href="http://userstyles.org/style/show/540" title="Digg style from userstyles" target="_blank">remove the ads</a> from <a href="http://www.digg.com" title="Digg.com" target="_blank">Digg</a> &#8211; allowing you to browse ad free.  Another allows you to modify <a href="http://del.icio.us" title="Del.icio.us" target="_blank">del.icio.us</a> &#8211; which, though one of my favorite sites, is kind of plain.  I have <a href="http://bogeywebdesign.wordpress.com/files/2006/12/stylish-delicious.doc" title="My del.icio.us stylesheet" target="_blank">posted my stylesheet</a> &#8211; feel free to steal, modify, claim credit, etc.   You will have to open it and save it as a .css to use it in Stylish since WordPress does not allow uploading of that file type.  Mine is just a modified version I found on a <a href="http://userstyles.org/style/list/site" title="Userstyles.org" target="_blank">site dedicated to user styles</a>.  There are some nice <a href="http://www.myspace.com" title="MySpace" target="_blank">MySpace</a> and <a href="http://slashdot.org/" title="Slashdot" target="_blank">Slashdot</a> ones I have yet to try.  I&#8217;d like to find/make a decent one for <a href="http://diggdot.us/" title="Diggdot.us - digg / slashdot / del.icio.us" target="_blank">diggdot.us</a>.</p>
<p>Random Tidbit: Going back to Opera for a moment I found a <a href="http://operawiki.info/OperaUserCSS" title="User CSS Tips and code for Opera" target="_blank">Wiki that talks about a built in feature similar to Stylish</a>.  I have tried and failed to make it work but I think that&#8217;s more user error then anything.  The page also mentions userstyles and another page where you can get page styles &#8211; just remember to remove the Mozilla encoding from the posts on userstyles.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">25</post-id>	</item>
		<item>
		<title>My Top Ten Sites</title>
		<link>https://www.bogeywebdesign.com/2006/08/17/my-top-ten-sites/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Fri, 18 Aug 2006 00:36:59 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[internet]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=18</guid>

					<description><![CDATA[So I&#8217;m going away for a couple of days and won&#8217;t be able to post and I came up with the idea of sort of listing my top 10.5 sites. Not necessarily the best on the web but the ones I use the most frequently and find the most useful. Perhaps you might find something &#8230; <a href="https://www.bogeywebdesign.com/2006/08/17/my-top-ten-sites/" class="more-link">Continue reading <span class="screen-reader-text">My Top Ten Sites</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>So I&#8217;m going away for a couple of days and won&#8217;t be able to post and I came up with the idea of sort of listing my top 10.5 sites.  Not necessarily the best on the web but the ones I use the most frequently and find the most useful.  Perhaps you might find something you like.</p>
<p>10.5:    <a title="BogeyWebDesign.com" href="https://www.bogeywebdesign.com" target="_blank">BogeyWebDesign.com</a> &#8211; not even rating a full number, but I&#8217;m always updating my site.  I&#8217;d be surprised if the number of (non me) page views was over a dozen a week, but maybe you&#8217;ll find a template or idea you can steal.</p>
<p>10:    <a title="Smedlock.com" href="http://www.smedlock.com" target="_blank">Smedlock.com</a> &#8211; I&#8217;m a geek, I admit it.  I play Magic the Gathering.  And this is one of the best sites to pick up cards on the net and I have never had any problems from them.</p>
<p>9:    <a title="MySpace" href="http://www.myspace.com" target="_blank">MySpace</a> &#8211; I almost hate to put this one up here.  I probably use WordPress more, but I like the fact that you can share information easily with you friends.  Not many of my friends have/read blogs or are into CSS and web design.  But most of them have a MySpace.</p>
<p>8:    <a title="Open Source Web Design" href="http://www.oswd.org" target="_blank">Open Source Web Design</a> &#8211; A huge, free collection of open source templates from beginners to experts.  Stick to XHTML with CSS and you&#8217;ll find tons of great designs you can just plug your information to and have an amazing site.  For free.</p>
<p>7:    <a title="Web Developer's Handbook" href="http://www.alvit.de/handbook/" target="_blank">Web Developer&#8217;s Handbook</a> &#8211; A huge collection of resources from Web 2.0 sites, to CSS and HTML tools and all the way down to color pallette generators and free stock photography.  Awesome tool for designers.</p>
<p>6:    <a title="CSS Play" href="http://www.cssplay.co.uk/" target="_blank">CSSPlay</a> &#8211; One of the best collections of CSS on the web.  Anytime I need something neat, I look here first.  The only problem is that anytime I think I&#8217;ve done something original, I usually find that he&#8217;s already done it.</p>
<p>5:    <a title="MeyerWeb" href="http://www.meyerweb.com" target="_blank">MeyerWeb</a> &#8211; The King of CSS.  Enough said.</p>
<p>4:    <a title="Dilbert Blog" href="http://dilbertblog.typepad.com" target="_blank">DilbertBlog</a> &#8211; Scott Adams&#8217; Dilbert is one of the funniest comic strips out there, especially if you&#8217;ve ever worked in a cubicle.  The only thing funnier is Scott Adams himself.</p>
<p>3:    <a title="CSS Zen Garden" href="http://www.csszengarden.com" target="_blank">CssZenGarden.com</a> &#8211; The single greatest collection of CSS on the net in my opinion.  If I had half the skill of some of the people that have designs on here I&#8217;d be all right.  Hopefully, one day, I&#8217;ll make one and have it accepted.</p>
<p>2:    <a title="Del.icio.us" href="http://del.icio.us" target="_blank">Del.icio.us</a> &#8211; This is my new obsession.  I love the fact that I can store all my bookmarks in one place, categorize them easily and even share them with my friends.  Awesome.</p>
<p>1:    <a title="Digg.com" href="http://www.digg.com" target="_blank">Digg.com</a> &#8211; I am constantly checking this site for interesting stories, great deals or even some useful CSS and web design stuff.  I have yet to post or get an account, but I may yet when I have more time.</p>
<p>Hopefully you found something interesting that you had not seen.  I just realized most were design sites, but that has been my main focus the last year or so &#8211; so I guess that makes sense.  I&#8217;m sure I&#8217;ll have a revision down the road.  What is your top 10.5 sites?</p>
<p>Random Tidbit: Want to get to know me a little more?  Of course you don&#8217;t.  But I&#8217;m gonna toss <a title="My MySpace" href="http://www.myspace.com/dohmsford" target="_blank">my MySpace</a> up here anyways. Logon and check out my weasel &#8211; my ferret Mugsy.  She gets top billing because she&#8217;s cuter and works for Skittles.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">18</post-id>	</item>
		<item>
		<title>The Holy Grail &#8211; 3 column, fluid, content first template with header and footer</title>
		<link>https://www.bogeywebdesign.com/2006/08/16/the-holy-grail-3-column-fluid-content-first-template-with-header-and-footer/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Thu, 17 Aug 2006 02:42:41 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=17</guid>

					<description><![CDATA[Ok, maybe not the Holy Grail &#8211; Indiana Jones was not involved.  But still a neat template.  It&#8217;s a simple, fluid design.  In the source, which is what the search engines see, the order goes content, left navigation, right, header, and then footer.  So they get a good feel of your site as well as &#8230; <a href="https://www.bogeywebdesign.com/2006/08/16/the-holy-grail-3-column-fluid-content-first-template-with-header-and-footer/" class="more-link">Continue reading <span class="screen-reader-text">The Holy Grail &#8211; 3 column, fluid, content first template with header and footer</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>Ok, maybe not the Holy Grail &#8211; Indiana Jones was not involved.  But still a neat template.  It&#8217;s a <a href="http://dohmsford.home.comcast.net/templates/3colsimple2.0.html" title="3 column, fluid, content first template with header and footer" target="_blank">simple, fluid design</a>.  In the source, which is what the search engines see, the order goes content, left navigation, right, header, and then footer.  So they get a good feel of your site as well as the links to go through it &#8211; if you use the left area for internal navigation.  It re-sizes up to 2 text increases with no failure in both IE and Mozilla &#8211; I have to start testing in Opera soon &#8211; and will fill the browser window in each &#8211; slight glitch in IE where sometimes right will drop down the pop back up for a second, I blame Microsoft.</p>
<p>Left and right will cover 20% of the available space and &#8211; for those of you bad at math &#8211; content the other 60%.  The header is 100px tall &#8211; I may update this to 10em to make more fluid later on &#8211; and the wrapper holding the 3 main divs has a 100px padding.  Changing both will expand the header and push the content down.  I also found a <a href="http://alistapart.com/articles/footers" title="Exploring Footers" target="_blank">neat trick</a> to position things at the bottom of the window.  I may also move the footer down to whichever is further down &#8211; the bottom of the browser window or the bottom of the content.  That may be tricky though and I wanted to get this out for now.  I should have a 2 column one out soon &#8211; if you wanted to convert this one simply delete the left or right, add the 20% to either or both of the ones left and change the margin-left if need be.</p>
<p>I also have not had time to add graphics to anything.  Between work &#8211; I work on a major companies family of job boards &#8211; and some recent job opportunities that have sprung up, I have been straight out.  I&#8217;m hoping to rectify this soon.</p>
<p>Random Tidbit: Two interesting space happenings.  One is <a href="http://www.redorbit.com/news/space/618134/voyager_1_the_spacecraft_that_could_hits_new_milestone/index.html" title="'The Spacecraft That Could' Hits New Milestone" target="_blank">Voyager 1 is about to leave the solar system</a>.  Pretty impressive that something that old is still going strong.  Also, after almost kicking Pluto out of the &#8216;family&#8217; the tide has changed and <a href="http://www.nzherald.co.nz/section/story.cfm?c_id=5&amp;ObjectID=10396493" title="Solar system to welcome three new planets" target="_blank">they&#8217;re thinking of adding 3 new planets to the solar system</a> &#8211; nothing as cool as Uranus though.  I&#8217;m almost willing to bet 10 bucks Google will buy one of them.  They buy everything else that&#8217;s new (2.0) &#8211; not that that&#8217;s a bad thing.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">17</post-id>	</item>
		<item>
		<title>Royalty Free Photos and Palette Generator</title>
		<link>https://www.bogeywebdesign.com/2006/08/12/royalty-free-photos-and-palette-generator/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Sat, 12 Aug 2006 22:52:47 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[internet]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=15</guid>

					<description><![CDATA[So lately I&#8217;ve been searching for a little inspiration and I&#8217;ve found two tools that when used together are very interesting.  One is Free Stock Photography.  They have tons of high resolution, royalty free images that are interesting as potential backgrounds.  Even just cutting a small portion of some of the landscapes and using them &#8230; <a href="https://www.bogeywebdesign.com/2006/08/12/royalty-free-photos-and-palette-generator/" class="more-link">Continue reading <span class="screen-reader-text">Royalty Free Photos and Palette Generator</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>So lately I&#8217;ve been searching for a little inspiration and I&#8217;ve found two tools that when used together are very interesting.  One is <a href="http://www.adigitaldreamer.com/gallery/index.php" title="Free Royalty-Free Stock Photography" target="_blank">Free Stock Photography</a>.  They have tons of high resolution, royalty free images that are interesting as potential backgrounds.  Even just cutting a small portion of some of the landscapes and using them to create a pattern might be interesting.</p>
<p>The problem is when you find an image, figuring out what color scheme to use to best fit the images you have or get from the site.  Well, I found a nice <a href="http://www.degraeve.com/color-palette/index.php" title="Color Palette Generator" target="_blank">Color Palette Generator</a> that takes in a 600px or less image and gives you a matching palette.  Pretty neat.  I&#8217;m hoping to use this to generate some template sites very soon.</p>
<p>That&#8217;s all for now.  Been pretty busy at work and updating my site when I get home.  Hopefully I&#8217;ll have something to show soon.</p>
<p>Random Tidbit: If you haven&#8217;t checked out <a href="http://del.icio.us/" title="del.icio.us" target="_blank">del.icio.us</a> yet, do it.   Basically, it&#8217;s a social bookmarking site.  Meaning you can bookmark neat sites you find and share them with your network of friends.  In addition, it allows you to organize them with tags.  If you&#8217;re like me, and most designers, you have a large number of local bookmarks &#8211; at work, on your various computers &#8211; and no real cohesion.  This allows you to import them from your browser and save them all on there.  So you can have access to your entire bookmark collection and organize them very simply so that you can easily find what you are looking for.  I keep a great deal of mine private, but I&#8217;m going to start changing that as I go through mine in the next few weeks.  Feel free to check out <a href="http://del.icio.us/dohmsford" title="My del.icio.us bookmarks" target="_blank">my public ones</a> &#8211; and send me a network invite if you want.  At the very least, use it.  It&#8217;ll save you a lot of time and it&#8217;s a cool site to boot.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">15</post-id>	</item>
		<item>
		<title>Designer&#8217;s Block</title>
		<link>https://www.bogeywebdesign.com/2006/08/03/designers-block/</link>
		
		<dc:creator><![CDATA[bogeywebdesign]]></dc:creator>
		<pubDate>Fri, 04 Aug 2006 01:48:48 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[Patriots]]></category>
		<category><![CDATA[Red Sox]]></category>
		<guid isPermaLink="false">http://www.weaselwardance.com/?p=13</guid>

					<description><![CDATA[So I mentioned the other day that I&#8217;m trying to design a horizontal main style sheet for my site.  I got the idea from the CSS Zen Garden and specifically the pret-a-porter design.  I&#8217;ve seen several other ones like that but that one is the most interesting.  It&#8217;s not the type of design you usually &#8230; <a href="https://www.bogeywebdesign.com/2006/08/03/designers-block/" class="more-link">Continue reading <span class="screen-reader-text">Designer&#8217;s Block</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>So I mentioned the other day that I&#8217;m trying to design a horizontal main style sheet for my site.  I got the idea from the <a href="http://www.csszengarden.com" title="The CSS Zen Garden" target="_blank">CSS Zen Garden</a> and specifically the <a href="http://www.csszengarden.com/?cssfile=037/037.css" title="pret-a-porter by Minz Meyer - www.minzweb.de" target="_blank">pret-a-porter</a> design.  I&#8217;ve seen several other ones like that but that one is the most interesting.  It&#8217;s not the type of design you usually see online, it&#8217;s more of a print based design &#8211; and in fact that&#8217;s where he got the idea for his from.  But widescreen monitors have taken off on laptops (which is what I usually program on, especially since my <a href="http://bogeywebdesign.wordpress.com/2006/07/23/lowest-common-denominator/" title="Lowest Common Denominator" target="_blank">desktop problems</a>) so I thought it was viable.  Plus, since you&#8217;re using absolute positioning it&#8217;s challenging and different them my other designs.</p>
<p>The problem is that I also wanted to use some drop shadowed graphics to try and create depth &#8211; a good example being <a href="http://www.csszengarden.com/?cssfile=026/026.css" title="Zunflower by Radu Darvas - http://www.homelesspixel.de" target="_blank">Zunflower</a>.  I think the combination of the two elements would be a striking addition to my portfolio.</p>
<p>The problem?  My seeming inability to get Photoshop to do what I want it to do.  Everytime I tried to create the graphics the other day it was fine until I tried to save for the web and use it on my template.  Then everything broke down &#8211; specifically the drop shadow went &#8216;wonky&#8217; (a highly technical term, look it up).  After several tries I finally gave up.  In talking with a graphic designer friend he suggested I try adding the background to the graphic, but I&#8217;m still not sure how that would help.</p>
<p>So now, stuck on this, I&#8217;ve spent the last few days ineffectively trying to get back to the design.  I have managed to do a few other odds and ends around the site, but most of those haven&#8217;t made it off my local platform and onto the web.  I&#8217;ve hit a virtual wall.</p>
<p>I&#8217;m hoping the freedom of the weekend will help and get some creative juices flowing, motivating me to get some work done.  I would like to get that finalize so I can get some templates cranked out.  I would like to offer them on some open source sites soon &#8211; I&#8217;d love to see others use my work.  But only time will tell.</p>
<p>Random Tidbit: It was awesome seeing Big Papi crank a &#8216;homah&#8217; on the Indians to win it the other night.  I knew the minute he came up the game was over.  In Beantown we spell clutch B-i-g-P-a-p-i.  Hopefully this season will finally convince people that regardless of him not playing the field he should be the MVP (as he should have been last year).  Winning games &#8211; with your glove or bat &#8211; is winning games.  Period.  It was also good to see Tom Brady stand up for his teammate Deion Branch.  I have faith in Belichick, but come on, he&#8217;s a top 5 receiver and he&#8217;s making something like $1.5M this year.  We ask so much of them, we gotta give a little back.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">13</post-id>	</item>
	</channel>
</rss>
