<?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>CreativityDen</title> <atom:link href="http://blog.creativityden.com/feed/" rel="self" type="application/rss+xml" /><link>http://blog.creativityden.com</link> <description>creative crazy!</description> <lastBuildDate>Wed, 10 Mar 2010 17:40:55 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Fixing Transparency in IE6</title><link>http://blog.creativityden.com/fixing-transparency-in-ie6/</link> <comments>http://blog.creativityden.com/fixing-transparency-in-ie6/#comments</comments> <pubDate>Tue, 09 Mar 2010 07:42:57 +0000</pubDate> <dc:creator>Brian Rhinehart</dc:creator> <category><![CDATA[Tutorials]]></category> <category><![CDATA[fix]]></category> <category><![CDATA[ie6]]></category> <category><![CDATA[image]]></category> <category><![CDATA[opacity]]></category> <category><![CDATA[png]]></category> <category><![CDATA[transparency]]></category> <category><![CDATA[transparent]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=3794</guid> <description><![CDATA[You&#8217;ve created this really great design and everything looks just like the treatment the client approved in all other standards compliant browsers, but then they come back and say &#8220;By the way, it has to work in Internet Explorer 6 as well.&#8221; Great, here comes hours of debugging and a separate style sheet on top [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/ftii-ie-logo.jpg" alt="IE6 Logo" /></p><p>You&#8217;ve created this really great design and everything looks just like the treatment the client approved in all other standards compliant browsers, but then they come back and say &ldquo;By the way, it has to work in Internet Explorer 6 as well.&rdquo; Great, here comes hours of debugging and a separate style sheet on top of that. And what are you supposed to do about all those 24bit PNGs with transparency you&#8217;ve used?</p><p><span
id="more-3794"></span></p><h3>History</h3><p>I have tried several solutions like using the <code>AlphaImageLoader</code> filter in an IE6 specific style sheet, TwinHelix&#8217;s IE PNG Fix, Unit Interactive&#8217;s Unit PNG Fix and a number of others, but none of the fixes worked for every situation. These solutions worked well except when used with <code>background-position</code>, <code>background-repeat</code> and elements with the <code>a:hover</code> pseudo-class.</p><h3>A better solution</h3><p><a
href="http://www.dillerdesign.com/experiment/DD_belatedPNG/">DD_belatedPNG</a>, written by Drew Diller, is a Javascript library that uses Microsoft&#8217;s implementation of VML (Vector Markup Language) instead of Microsoft&#8217;s <code>AlphaImageLoader</code> filter. It works by adding a line of CSS to the document via the DOM which acts as a MSIE-proprietary behavior (Javascript expression) that gets bound to the elements on the fly.</p><p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/ftii-button.jpg" alt="Buttons" width="610" height="70" class="aligncenter size-full wp-image-3855" /></p><p>I&#8217;ve used it on a number of sites and have found that transparent images used with <code>background-position</code>, <code>background-repeat</code> and <code>a:hover</code> behave and display identically to modern browsers.</p><p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/ftii-background-repeat.jpg" alt="Background Repeat" width="610" height="150" class="aligncenter size-full wp-image-3859" /></p><h3>Usage</h3><p>Implementing the fix is pretty straightforward, albeit you&#8217;ll want to use a conditional comment to keep other browsers from loading unnecessary code.</p><ol><li><a
href="http://dillerdesign.com/experiment/DD_belatedPNG/">Download</a> a copy of the Javascript file.</li><li>Refer to the file in your code (see code example below). <em>It&#8217;s good practice to put Javascript at the end of the document just before the closing <code>&lt;/body&gt;</code> tag.</em></li><li>Next, add a function that calls to <code>DD_belatedPNG.fix()</code></li><li>Replace <strong>your_argument</strong> with either a CSS selector <code>('.class')</code>, DOM element <code>('a, div, ul')</code> or even a group of selectors <code>('.class, .class-two, #id')</code>.</li></ol><h4>Code Example</h4><pre class="brush: php; html-script: true;">
&lt;!--[if IE 6]&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;DD_belatedPNG.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
DD_belatedPNG.fix('your_argument');
&lt;/script&gt;
&lt;![endif]--&gt;
</pre><h3>A little advice</h3><p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/ftii-signs.jpg" alt="Road Signs" width="300" height="170" class="aligncenter size-full wp-image-3857" /></p><p>I would caution against just using DOM elements as this triggers the fix() for every reference of the element in the HTML document, including elements that do not contain transparent PNGs. If you do decide to use them, absolutely <strong>do not</strong> use <code>('body')</code> as an argument. Just don&#8217;t, Chicken Little, the sky is falling, the whole bad enchilada.</p><h3>Last bit</h3><p>There are still a few issues, like <code>&lt;tr&gt;</code>, <code>&lt;td&gt;</code> and <code>&lt;input type="image"/&gt;</code> not working, but for the most part this is the best solution to transparent images in IE6 that I have found to date.</p>]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/fixing-transparency-in-ie6/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Creating Isometric Graphics in Illustrator</title><link>http://blog.creativityden.com/creating-isometric-graphics-in-illustrator-2/</link> <comments>http://blog.creativityden.com/creating-isometric-graphics-in-illustrator-2/#comments</comments> <pubDate>Mon, 08 Mar 2010 19:29:48 +0000</pubDate> <dc:creator>Peter Hinton</dc:creator> <category><![CDATA[Tutorials]]></category> <category><![CDATA[3D in Illustrator]]></category> <category><![CDATA[3D View]]></category> <category><![CDATA[Ilsometric]]></category> <category><![CDATA[Isometric in Illustrator]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=3741</guid> <description><![CDATA[A recent trend, particularly amongst Flash-based websites has been to create an experience based around the isometric representation. Isometric illustrations provide a 3D view where no matter where an element is within the image it remains in scale, unlike the true 3D perspective where objects reduce in size towards the background.In this article you will learn the two common methods used for creating isometric illustrations and how to create them in Illustrator.]]></description> <content:encoded><![CDATA[<p>A recent trend, particularly with Flash-based websites has been to create an experience based around the isometric representation. Isometric illustrations provide a 3D view where no matter where an element is within the image it remains in scale, unlike the true 3D perspective where objects reduce in size towards the background.</p><p><img
class="alignnone size-full wp-image-3781" src="http://blog.creativityden.com/wp-content/uploads/2010/03/main1.jpg" alt="" width="610" height="200" /></p><p>In this article you will learn the two common methods used for creating isometric illustrations and how to create them in Illustrator.</p><p><span
id="more-3741"></span></p><p>There are two common methods to choose from when you want to create the feel of an isometric drawing; either truly accurate isometric, or the 2:1 pixel ratio.</p><h3>Method 1: Truly Accurate Isometric</h3><p>If you are creating a technical drawing or icon set this is probably the method for you, the final image will match the true isometric representation.</p><h4>Step 1: Create 2D outlines</h4><p><img
class="aligncenter size-full" src="http://blog.creativityden.com/wp-content/uploads/2010/03/method01-a.jpg" alt="" /></p><h4>Step 2: Scale the design vertically by 86.602%.</h4><p>Object &gt; Transform &gt; Scale</p><p><img
class="aligncenter size-full" src="http://blog.creativityden.com/wp-content/uploads/2010/03/method01-b.jpg" alt="" /></p><h4>Step 3: Shear (or ‘skew’ in other programs) by 30 degrees.</h4><p>Object &gt; Transform &gt; Shear</p><p><img
class="aligncenter size-full" src="http://blog.creativityden.com/wp-content/uploads/2010/03/method01-c.jpg" alt="" /></p><h4>Step 4: Rotate the design by either 30 or -30 degrees.</h4><p>Object &gt; Transform &gt; Rotate</p><p><img
class="aligncenter size-full" src="http://blog.creativityden.com/wp-content/uploads/2010/03/method01-d.jpg" alt="" /></p><h4>Step 5: Add the details &amp; finish the image.</h4><p><img
class="aligncenter size-full" src="http://blog.creativityden.com/wp-content/uploads/2010/03/method01-final.jpg" alt="" /></p><h3>Method 2: The 2:1 Pixel Ratio</h3><p>If you are creating a piece of artwork or a media presentation then the 2:1 pixel ratio method provides the illusion of isometric even through it isn&#8217;t truly accurate, the major advantage if you decide to choose this route is that it is a far quicker technique to produce from.</p><p>I recently launched the <a
href="http://www.worldofteleware.com">World of TeleWare</a> micro-site; an interactive cityscape where users can explore the companies solutions through a series of animations and illustrations. I used the 2:1 method to create this project due to the sheer scale of the project and the scheduled timescale.</p><h4>Step 1: Create 2D outlines</h4><p>Object &gt; Transform &gt; Rotate</p><p><img
class="aligncenter size-full" src="http://blog.creativityden.com/wp-content/uploads/2010/03/method01-a.jpg" alt="" /><br
/> Using the &#8216;Direct Selection Tool&#8217;</p><h4>Step 2: Rotate the design by 45 degrees.</h4><p><img
class="aligncenter size-full" src="http://blog.creativityden.com/wp-content/uploads/2010/03/method02-b.jpg" alt="" /></p><h4>Step 3: Drag the top &amp; bottom points on a 2:1 pixel ratio.</h4><p><img
class="aligncenter size-full" src="http://blog.creativityden.com/wp-content/uploads/2010/03/method02-c.jpg" alt="" /></p><h4>Step 4: Add the details &amp; finish the image.</h4><p><img
class="aligncenter size-full" src="http://blog.creativityden.com/wp-content/uploads/2010/03/method02-final.jpg" alt="" /></p><h3>Comparing the Methods</h3><p>Here is a side-by-side image showing the difference between the two methods.</p><p><img
class="aligncenter size-full wp-image-3782" src="http://blog.creativityden.com/wp-content/uploads/2010/03/methods.jpg" alt="" width="500" height="340" /></p><p>I hope you have found this article useful. My next few entries will document how you can export illustrations to Flash and create eye-catching animations &amp; interactive micro-sites.</p>]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/creating-isometric-graphics-in-illustrator-2/feed/</wfw:commentRss> <slash:comments>11</slash:comments> </item> <item><title>An interview with freelance web designer Sam Brown</title><link>http://blog.creativityden.com/an-interview-with-freelance-web-designer-sam-brown/</link> <comments>http://blog.creativityden.com/an-interview-with-freelance-web-designer-sam-brown/#comments</comments> <pubDate>Mon, 08 Mar 2010 17:24:53 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Interviews]]></category> <category><![CDATA[appzapper]]></category> <category><![CDATA[carbonmade]]></category> <category><![CDATA[massive blue]]></category> <category><![CDATA[sam brown]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=3613</guid> <description><![CDATA[Sam Brown a freelance web designer and blogger has kindly given up a few minutes of his time to answer a few questions about web design and freelancing.
He talks about how he got his first freelance job to what his favorite color and font is. If you are a designer wishing to enter the freelance [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/main2.jpg" alt="" title="main" width="300" height="263" class="alignright size-full wp-image-3807" /></p><p>Sam Brown a freelance web designer and blogger has kindly given up a few minutes of his time to answer a few questions about web design and freelancing.</p><p>He talks about how he got his first freelance job to what his favorite color and font is. If you are a designer wishing to enter the freelance world, Sam offers a great insight into becoming a freelance web designer.</p><div
class="clear"></div><p><span
id="more-3613"></span></p><h3>Let&#8217;s begin</h3><h4>Who are you Sam?</h4><p>My name is Sam Brown, I am a freelance interface designer and web standards developer from Edinburgh Scotland.</p><h4>When did you first become interested in design?</h4><p>It was the mid &#8217;90&#8217;s and I was just starting high school, my father brought home a HTML book from I don&#8217;t know where and I started tinkering with web sites in Notepad on my Win 95 machine. This was where it all started for me, I then took a Multimedia Design course at a Technology High School then moving on to Computer Graphics College and Uni before leaving to pursue my freelance career.</p><p><a
href="http://www.flickr.com/photos/paddydonnelly/4286930337/sizes/l/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/sam.jpg" alt="" title="sam" width="610" height="300" class="aligncenter size-full wp-image-3708" /></a></p><h4>How did you teach yourself how to design?</h4><p>Trial and error initially, the few years I spent at Uni helped me learn the fundamentals of design but for me it was all about actually getting out there, doing it and progressing my skills over time.</p><h4>When and how did you get your first client?</h4><p><a
href="http://www.massiveblue.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/websites.png" alt="" title="websites" width="347" height="452" class="alignright size-full wp-image-3710" style="margin: 0 -100px 0 5px;" /></a></p><p>My first real client that wasn&#8217;t a site of my own or a family friend had posted a message on my Uni noticeboard wanting a site design for his property business. I called, met and landed the job that same day. This was around 2003, I am still working with this client to date.</p><h4>Would you rather have a full-time job or freelance?</h4><p>Freelance, without a shadow of doubt. I worked at a boutique web design agency after leaving Uni in Sydney Australia for a year and while I enjoyed the experience and my time there it left me in doubt that I wanted to continue working as a freelancer thereafter. The flexibility and power of choice I have running my own business means I probably couldn&#8217;t go back to working for someone else.</p><h4>How do you tackle design briefs?</h4><p>By tearing them apart, I usually print them and end up scribbling notes all over them. Discussing them with the client after receiving them is always the best approach, making sure that we are both on the exact same page and that nothing is misinterpreted.</p><h4>Do you feel qualifications are more important than experience?</h4><p>Absolutely not, I completed high school and went to Uni for two years only to leave to do actual work. I had taught myself design and development from an early age and I spent two years at University learning the same things and worse still, not the right way &#8211; there is nothing better than actually getting out there and doing what you love to do. Experience over qualifications every time.</p><h4>How has writing a blog affected your freelance career?</h4><p><a
href="http://sam.brown.tc/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/blog.png" alt="" title="blog" width="220" height="385" class="alignleft size-full wp-image-3714" style="margin: 0 15px 0 -100px;" /></a></p><p>Perhaps by bolstering my name on the web, I started and continue to write my blog the way I want to write it &#8211; I never started it to gain new clients or reputation, simply as a place to write my thoughts and opinions. Lately however I do seem to get just as many requests for work through my personal blog as I do my actual portfolio site so in essence it has helped.</p><h4>Where do you find inspiration?</h4><p>Everywhere and anywhere that isn&#8217;t another web site &#8211; I fear to many people rely on gallery sites for inspiration, it&#8217;s magazines, books, architecture and physical design that inspires me most.</p><h4>Is there anyone you look up to in the design community?</h4><p>Everybody. It doesn&#8217;t matter if it&#8217;s a big name, or someone straight out of school. I admire everyone in our community, there is a serious wealth of talent out there. People are doing wonderful and amazing things and pushing our industry all the time, no-one should be overlooked.</p><h4>Favorite colour and font/typeface?</h4><p>Blue and FF DIN.</p><p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/color.jpg" alt="" title="color" width="610" height="200" class="aligncenter size-full wp-image-3718" /></p><h4>What are your top five favorite website designs?</h4><p>That&#8217;s really tough. I absolutely love <a
href="http://colly.com">Simon Collison&#8217;s redesign</a> , the new <a
href="http://panic.com/blog">Panic blog</a> is equally nice and the one site I wish I could steal the design of is <a
href="http://www.wilsonminer.com">Wilson Miner</a>.</p><p><a
href="http://www.wilsonminer.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/wilson.jpg" alt="" title="wilson" width="610" height="300" class="alignnone size-full wp-image-3725" /></a></p><h4>What&#8217;s your favorite style of website design and why?</h4><p>Clean and simple aesthetics appeal to me most, it is my particular style of choice and I enjoy coming across other sites that pull off this minimalistic style well.</p><p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/workspace.jpg" alt="" title="workspace" width="500" height="333" class="aligncenter size-full wp-image-3627" /></p><p><a
href="http://handcraftedcss.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/handcraftedcss.jpg" alt="" title="handcraftedcss" width="150" height="184" class="alignright size-full wp-image-3635" style="margin: 15px 0 0 15px;" /></a></p><h4>Are there any books or websites you&#8217;d recommend for designers?</h4><p>Dan Cederholm&#8217;s new <a
href="http://handcraftedcss.com/">Handcrafted CSS</a> is a real treat, and if you are in need of some inspiring images definitely check out <a
href="http://ffffound.com/">FFFFound</a>.</p><h4>Where would you like to be in 5 years time?</h4><p>I&#8217;m not sure where I would like to be in 5 months time, never mind 5 years. I&#8217;m all about here and now, I&#8217;ll worry about 5 years time in 5 years time!</p><h4>Any last words for the aspiring designers trying to follow in your footsteps?</h4><p>Work hard, never stop learning, stay on top of all the latest techniques and partake in the community you aspire to.</p><hr/><p>Thank you very much for taking the time to answer these questions Sam. If you have any questions for Sam, I am sure he would be more than willing to reply to them in the comment section.</p>]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/an-interview-with-freelance-web-designer-sam-brown/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Welcome to the new CreativityDen</title><link>http://blog.creativityden.com/welcome-to-the-new-creativityden/</link> <comments>http://blog.creativityden.com/welcome-to-the-new-creativityden/#comments</comments> <pubDate>Fri, 05 Mar 2010 22:22:08 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Announcements]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=3499</guid> <description><![CDATA[I am proud to announce the redesign for CreativityDen is complete, it has been a crazy couple of weeks but I think I am finally done. The design is completely different from the last but not to worry I have explained every last detail. I hope you like the new CreativityDen and I look forward [...]]]></description> <content:encoded><![CDATA[<p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/redesign.jpg" alt="" title="redesign" width="610" height="200" class="aligncenter size-full wp-image-3687" /></p><p>I am proud to announce the redesign for CreativityDen is complete, it has been a crazy couple of weeks but I think I am finally done. The design is completely different from the last but not to worry I have explained every last detail. I hope you like the new CreativityDen and I look forward to any feedback you may give. Oh, and I am also giving away a free ticket to the Future of Web Design Conference to celebrate. Enjoy!</p><p><span
id="more-3499"></span></p><h3>The design</h3><h4>A focus on content</h4><p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/content.jpg" alt="Content" title="content" width="600" height="360" class="aligncenter size-full wp-image-3661" /></p><p>Whilst redesigning CreativityDen I had a number of objectives that I wanted to achieve. The first was to reduce the number of static elements &#8211; areas that stay the same and usually contain some sort of navigation. After a couple of visits these areas just appear to become wasted space. Having a large space in your sidebar dedicated to Social Media seems unecessary if the reader will only use it once. I also came to realize that as the subscriber count grew, the static content on the actual website would seem less and less important as subscribers tend to just isolate themselves to their RSS Readers instead of visiting the website.</p><p>The design that emerged was one of simplicity. The term &#8216;Content is king&#8217; has haunted my mind for a number of weeks now. Everyone visits a website for it&#8217;s content, even if the design is terrible, you still want to read the latest news! The design is unlikely to prevent but can distract you from reading the latest headlines. With that said, a design that removes any distractions will let the content be King.</p><p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/museo.jpg" alt="" title="museo" width="200" height="284" class="alignleft size-full wp-image-3664" /></p><h4>Typography</h4><p>After Andrew redesigned <a
href="http://www.myinkblog.com/">MyInkBlog</a> I was impressed by the beautiful typography. After he mentioned <a
href="http://typekit.com/">Typekit</a> in his launch post I just had to get my hands on it. Originally I wanted to use Blue highway for the logo and heading type however as this font wasn&#8217;t available I instead chose the hugely popular (and free!) Museo and Museo Sans. I&#8217;m glad I did! After staring it for over a week now, I can&#8217;t understand why I didn&#8217;t choose it in the first place. I also tried to improve the post typography, with more defined headings and a spacious line height.</p><p>After joining Typekit I was given 5 invitations, refer to the end of the post for your chance to win one.</p><p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/filtermenu.jpg" alt="" title="filtermenu" width="250" height="223" class="alignright size-full wp-image-3668" /></p><h4>jQuery</h4><p>After fiddling about with jQuery for a couple of months I wanted to see if I could implement it into the design. jQuery was by no minds a requirement but it adds character. Smooth fades and animations worked wonders with the design. I found that the animations seemed to compliment the roundness of the design.</p><h4>CSS3</h4><p>As well as including some jQuery I also made use of a of couple of the excellent new properties available with CSS3. The border-radius property allowed me to round every area easily and the text shadow worked great for aliasing the Museo type (for the Windows users).</p><h4>Comments</h4><p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/comments.jpg" alt="" title="comments" width="550" height="255" class="aligncenter size-full wp-image-3670" /></p><p>After reading design blogs for the past couple of months, I noticed that comment sections tend to be neglected. For the owner of the design blog, a comment tends to mean your website is being read and that its popularity is increasing. This may be true but it is important to read and reply to readers who have taken the time to leave an in-depth comment.</p><p>Even when they have, the design of the comment section can sometimes degrade these types of comments. A comment can be just as good, if not better than the post you have written. I therefore wanted to make sure that any reader wanting to leave a comment has the space to do so. The new and improved comment section is simple but allows the commentor to be heard with the given space they deserve.</p><h4>Navigation</h4><p>In my opinion the navigation on the previous design was appalling. Two menus, one above the logo and one below. The logo was suffocating. However, now the logo has been separated from the navigation. In my experience people tend to scroll and browse the page they are on before they navigate to another page. I decided that the most important navigation element that the new design required, was to be able to filter or browse through the available posts. The navigation would include all categories. As CreativityDen has quite a few categories, in an attempt to stick to my aim of reducing static areas, I decided to implement a drop down menu with the name &#8220;Filter by category&#8221;. Other navigation can be found when needed.</p><p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/footer.jpg" alt="" title="footer" width="610" height="56" class="aligncenter size-full wp-image-3672" /></p><h3>The network</h3><p>Not only did I want to redesign CreativityDen, I wanted to expand and develop it. I had a number of options or directions to choose from. I always wanted to add a <a
href="http://gallery.creativityden.com/">gallery of the finest web designs</a>, so that was the first to be made. I also had another idea, which was to add a <a
href="http://chat.creativityden.com/">chat area</a>. A place where designers can come and discuss the problems they&#8217;ve been having with their design, to get feedback on their latest piece of work or to simply chat and unwind. I have also decided to have scheduled talks and perhaps live interviews, so stay tuned!</p><p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/network.jpg" alt="" title="network" width="385" height="123" class="aligncenter size-full wp-image-3674" /></p><p>The CreativityDen network therefore currently consists of three sites: the <a
href="http://blog.creativityden.com/">Blog</a>, the <a
href="http://gallery.creativityden.com/">Gallery</a> and the experimental <a
href="http://chat.creativityden.com/">Chat</a>. I tried to make navigation between each site effortless. When loading any CreativityDen page you should notice the two arrows next to the site name in the logo. Hover over this to reveal a link to the other sites on the network.</p><h3>Connect with CreativityDen</h3><p>CreativityDen has now invaded a number of websites. If you have a Facebook or Flickr account why not connect with us and receive updates on the latest design news and inspiring designs.</p><ul><li><strong>Twitter</strong> &#8211; <a
href="http://twitter.com/creativityden">Follow CD on twitter</a> to receive regular updates on the latest web design news as well as general banter from yours truly.</li><li><strong>Tumblr</strong> &#8211; You can also <a
href="http://creativityden.tumblr.com/">follow CD on Tumblr</a>, a website that makes micro blogging easy. Looked like fun so I thought I&#8217;d give it a go.</li><li><strong>Facebook</strong> &#8211; Everyone, well a lot of people have a facebook account. If your one of the 350 million people that do then feel free to check out <a
href="http://www.facebook.com/pages/CreativityDen/107144052782">CD&#8217;s fan page</a>.</li><li><strong>Flickr</strong> &#8211; I don&#8217;t know why I hadn&#8217;t joined Flickr earlier. Will definitely look forward to <a
href="http://www.flickr.com/photos/creativityden/">showcasing your work</a> on CreativityDen.</li><li><strong>Ember</strong> &#8211; Similar to Flickr, <a
href="http://emberapp.com/creativityden">Ember</a> allows you to upload images and also has a great community. Can&#8217;t wait to get involved!</li></ul><h3>To celebrate, a competition</h3><h4>Future of Web Design</h4><p><a
href="http://futureofwebdesign.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/fowd.jpg" alt="" title="fowd" width="610" height="300" class="aligncenter size-full wp-image-3676" /></a></p><p>In light of the relaunch of CreativityDen I have an awesome competition to announce. I currently have a student conference ticket for the hugely popular Future of web design Conference in London. I have spoken with the Carsonfied team and then have let me change the name on the ticket, so anyone has the chance to go!</p><p><img
src="http://blog.creativityden.com/wp-content/uploads/2010/03/fowd1.jpg" alt="Future of Web Design" title="fowd" width="550" height="256" class="aligncenter size-full wp-image-3685" /></p><p>For your chance to win this ticket all you have to do is leave a comment saying why you would like to go.</p><h4>Typekit</h4><p>Along with a ticket to the FOWD conference I also have five invitations for Typekit. For your chance to win an invite, all you have to do is fan CreativityDen on it&#8217;s <a
href="http://www.facebook.com/pages/CreativityDen/107144052782">facebook page</a> and leave a comment on the wall.</p><p>Each competition will last until Friday 12th of March .The winners will be chosen using <a
href="http://www.random.org/">random.org</a> and announced later than day. Good luck!</p><h3>Final Words</h3><p>I just wanted to say this has been the most thrilling two weeks of my life in a long time! I have enjoyed every bit of the redesign and just hope you love it. Stay tuned for some awesome guest posts and well as interviews with some top designers!<div
class="topsy_widget_shortcode topsy_theme_mustard" style="background: url(data:,%7B%20%22url%22%3A%20%22http%3A%2F%2Fblog.creativityden.com%2Fwelcome-to-the-new-creativityden%2F%22%2C%20%22shorturl%22%3A%20%22http%3A%2F%2Fbit.ly%2FbbJkoB%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Welcome%20to%20the%20new%20CreativityDen%22%20%7D);"></div> I will also be scheduling a design chat very soon so keep a close eye on my twitter stream. I&#8217;m kinda rushing this a bit due to excitement so excuse an errors, they will be fixed ASAP.</p><p>Love ya! Liam McCabe</p>]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/welcome-to-the-new-creativityden/feed/</wfw:commentRss> <slash:comments>37</slash:comments> </item> <item><title>Smashing Slab Serif Typography</title><link>http://blog.creativityden.com/smashing-slab-serif-typography/</link> <comments>http://blog.creativityden.com/smashing-slab-serif-typography/#comments</comments> <pubDate>Sun, 14 Feb 2010 13:36:56 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Featured]]></category> <category><![CDATA[Resources]]></category> <category><![CDATA[font]]></category> <category><![CDATA[serif]]></category> <category><![CDATA[slab]]></category> <category><![CDATA[slab serif]]></category> <category><![CDATA[type]]></category> <category><![CDATA[typeface]]></category> <category><![CDATA[typography]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=3321</guid> <description><![CDATA[Smashing Solid Slabs
Typography has been around for Centuries if not Millennia. It has played a major role in communication and a world without type can be extremely hard to comprehend. Ever since the first letter was punched, typography has advanced significantly. There are now a number of different styles and fonts to choose from, that [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/playbill-150x150.jpg" alt="" title="playbill" width="150" height="150" class="alignnone size-thumbnail wp-image-3378" /></div><div
class="description"> <strong>Smashing Solid Slabs</strong></p><p>Typography has been around for Centuries if not Millennia. It has played a major role in communication and a world without type can be extremely hard to comprehend. Ever since the first letter was <a
href="http://en.wikipedia.org/wiki/Punch_(numismatics)">punched</a>, typography has advanced significantly. There are now a number of different styles and fonts to choose from, that almost anyone can use on their website or magazine/book. The type of style I will be looking at today is Slab Serif. I have recently noticed a increase in popularity in this style so I thought I would collect a few of my favorite fonts and typefaces and share them with you today.</p></div></div><p><span
id="more-3321"></span></p><h3>Background</h3><p>Slab serif printing type was first introduced around 1815 and was used primarily with advertisements, posters and flyers. <a
href="http://new.myfonts.com/person/Vincent_Figgins/">Vincent Figgins</a> designed a typeface called Antique that soon encouraged others to follow similar patterns in serif design.</p><p><a
href="http://www.typophile.com/node/30127">An excellent discussion regarding slab serif typography.</a></p><h4>Clarendon model</h4><div
id="attachment_3376" class="wp-caption aligncenter" style="width: 385px"><a
href="http://www.flickr.com/photos/stewf/42609503/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/clarendon.jpg" alt="" title="clarendon" width="375" height="500" class="size-full wp-image-3376" /></a><p
class="wp-caption-text">Clarendon</p></div><p>Have some bracketing and contrast in size in the actual serif. Examples include <a
href="http://new.myfonts.com/fonts/bitstream/clarendon/">Clarendon</a> and <a
href="http://www.linotype.com/112781/venusegyptienne-family.html">Egyptienne</a>.</p><h4>Neo-grotesque model</h4><div
id="attachment_3377" class="wp-caption aligncenter" style="width: 385px"><a
href="http://psd.tutsplus.com/articles/news/meet-the-new-tuts/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/tutsplus.jpg" alt="" title="tutsplus" width="375" height="500" class="size-full wp-image-3377" /></a><p
class="wp-caption-text">Tutsplus</p></div><p>The Neo-grotesque model is currently the most popular type of slab serif type. Neo-grotesque have no bracketing and evenly weighted stems and serifs. The letterforms are similar to neo-grotesque or realist sans-serif fonts. Examples include <a
href="http://www.fonts.com/FindFonts/detail.htm?pid=201908">Rockwell</a> and <a
href="http://www.fontyukle.com/en/1,lubal">Lubal Graph</a>(as seen on the <a
href="http://tutsplus.com/">Tutsplus networ</a>k).</p><h4>Italienne model</h4><div
id="attachment_3378" class="wp-caption aligncenter" style="width: 510px"><a
href="http://www.flickr.com/photos/anemoneletterpress/2366231465/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/playbill.jpg" alt="" title="playbill" width="500" height="375" class="size-full wp-image-3378" /></a><p
class="wp-caption-text">Playbill</p></div><p>The Italienne model has a distinct difference, with the serifs being even heavier than the stems. This creates a sense of dominance as well as an attention-drawing effect. Some Italienne slab serifs, such as <a
href="http://www.urbanfonts.com/fonts/Playbill.htm">Playbill</a>, have a characteristic Western appearance.</p><h4>Typewriter typefaces</h4><div
id="attachment_3380" class="wp-caption aligncenter" style="width: 510px"><a
href="http://www.flickr.com/photos/arthurohm/3589905434/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/typewriter.jpg" alt="" title="typewriter" width="500" height="375" class="size-full wp-image-3380" /></a><p
class="wp-caption-text">Typewriter typefaces, this one isn't slab serif but it's a fantastic photo!</p></div><p>Typewriter slab serif typefaces are named for their use in strike-on typewriting. These faces originated in monospaced format with fixed-width, meaning that every character takes up the same amount of horizontal space. Examples include Courier and Courier New (both Neo-grotesque model) and Prestige Elite (Clarendon model).</p><hr/><h3>A collection of the best</h3><p>Below I have collected a few of my favorite slab serif fonts both free and paid. If you have the money, I would thoroughly recommend the paid fonts. Some authors kindly supply a couple of free typefaces from their paid fonts.<p/><h4>Free Slab Serif Fonts</h4><p>There a number of great sites where you can download free fonts, these include: <a
href="http://www.dafont.com/">Dafont</a>, <a
href="http://www.fontsquirrel.com/">Fontsquirrel</a>, <a
href="http://www.urbanfonts.com/">Urban Fonts</a>, <a
href="http://www.fontspace.com/">Fontspace</a>.</p><div
id="attachment_3383" class="wp-caption aligncenter" style="width: 359px"><a
href="http://www.dafont.com/nilland.font"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/nilland.jpg" alt="" title="nilland" width="349" height="71" class="size-full wp-image-3383" /></a><p
class="wp-caption-text">Nilland</p></div><br
/><div
id="attachment_3382" class="wp-caption aligncenter" style="width: 392px"><a
href="http://www.dafont.com/street-corner-slab.font"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/streetcorner.jpg" alt="" title="streetcorner" width="382" height="68" class="size-full wp-image-3382" /></a><p
class="wp-caption-text">Street Corner Slab</p></div><br
/><div
id="attachment_3385" class="wp-caption aligncenter" style="width: 491px"><a
href="http://www.fontsquirrel.com/fonts/AlexandriaFLF"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/alexandria.jpg" alt="" title="alexandria" width="481" height="88" class="size-full wp-image-3385" /></a><p
class="wp-caption-text">Alexandria</p></div><br
/><div
id="attachment_3386" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.theleagueofmoveabletype.com/fonts/4-chunk"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/chunk.jpg" alt="" title="chunk" width="550" height="201" class="size-full wp-image-3386" /></a><p
class="wp-caption-text">Chunk</p></div><br
/><div
id="attachment_3409" class="wp-caption aligncenter" style="width: 526px"><a
href="http://new.myfonts.com/fonts/exljbris/museo-slab/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/museo.jpg" alt="" title="museo" width="516" height="216" class="size-full wp-image-3409" /></a><p
class="wp-caption-text">Museo</p></div><br
/><div
id="attachment_3406" class="wp-caption aligncenter" style="width: 495px"><a
href="http://www.fontsquirrel.com/fonts/Tertre"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/tertre.jpg" alt="" title="tertre" width="485" height="90" class="size-full wp-image-3406" /></a><p
class="wp-caption-text">Tertre</p></div><br
/><div
id="attachment_3408" class="wp-caption aligncenter" style="width: 469px"><a
href="http://www.squaregear.net/fonts/college.shtml"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/college.jpg" alt="" title="college" width="459" height="442" class="size-full wp-image-3408" /></a><p
class="wp-caption-text">College</p></div><br
/><div
id="attachment_3407" class="wp-caption aligncenter" style="width: 466px"><a
href="http://www.fontsquirrel.com/fonts/TypoSlabserif-Light"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/typoslabserif.jpg" alt="" title="typoslabserif" width="456" height="82" class="size-full wp-image-3407" /></a><p
class="wp-caption-text">TypoSlabSerif</p></div><h4>Paid Slab Serif Fonts</h4><p>Many authors like to release their work on their personal sites, however many also like to use websites such as <a
href="http://new.myfonts.com/">MyFonts</a> and <a
href="http://www.linotype.com/">LinoType</a> to sell their fonts</p><div
id="attachment_3459" class="wp-caption aligncenter" style="width: 504px"><a
href="http://www.typography.com/fonts/font_styles.php?productLineID=100033"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/archer.jpg" alt="" title="archer" width="494" height="648" class="size-full wp-image-3459" /></a><p
class="wp-caption-text">Archer</p></div><br
/><div
id="attachment_3366" class="wp-caption aligncenter" style="width: 427px"><a
href="http://www.fontbureau.com/fonts/Trilby"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/trilby.jpg" alt="" title="trilby" width="417" height="616" class="size-full wp-image-3366" /></a><p
class="wp-caption-text">Trilby</p></div><br
/><div
id="attachment_3367" class="wp-caption aligncenter" style="width: 495px"><a
href="http://www.typography.com/fonts/font_styles.php?productLineID=100034"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/sentinal.jpg" alt="" title="sentinal" width="485" height="630" class="size-full wp-image-3367" /></a><p
class="wp-caption-text">Sentinel</p></div><br
/><div
id="attachment_3457" class="wp-caption aligncenter" style="width: 446px"><a
href="http://new.myfonts.com/fonts/urw/stymie/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/stymie.jpg" alt="" title="stymie" width="436" height="309" class="size-full wp-image-3457" /></a><p
class="wp-caption-text">Stymie</p></div><br
/><div
id="attachment_3360" class="wp-caption aligncenter" style="width: 516px"><a
href="http://tdc.org/news/2007Results/Tisa.html"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/fftisa.jpg" alt="" title="fftisa" width="506" height="87" class="size-full wp-image-3360" /></a><p
class="wp-caption-text">FF Tisa</p></div><br
/><div
id="attachment_3456" class="wp-caption aligncenter" style="width: 412px"><a
href="http://www.fontbureau.com/fonts/Giza"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/giza.jpg" alt="" title="giza" width="402" height="601" class="size-full wp-image-3456" /></a><p
class="wp-caption-text">Giza</p></div><br
/><div
id="attachment_3362" class="wp-caption aligncenter" style="width: 486px"><a
href="http://www.fontshop.com/fonts/downloads/fontfont/ff_nexus_mix/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/ffnexusmix.jpg" alt="" title="ffnexusmix" width="476" height="83" class="size-full wp-image-3362" /></a><p
class="wp-caption-text">FF Nexus Mix</p></div><br
/><div
id="attachment_3455" class="wp-caption aligncenter" style="width: 490px"><a
href="http://www.felicianotypefoundry.com/main/?page_id=188"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/morgan.jpg" alt="" title="morgan" width="480" height="840" class="size-full wp-image-3455" /></a><p
class="wp-caption-text">Morgan</p></div><br
/><div
id="attachment_3359" class="wp-caption aligncenter" style="width: 482px"><a
href="http://www.fontshop.com/fonts/downloads/fontfont/ff_unit_slab_ot_collection/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/ffunit.jpg" alt="" title="ffunit" width="472" height="85" class="size-full wp-image-3359" /></a><p
class="wp-caption-text">FF Unit Slab</p></div><br
/><div
id="attachment_3358" class="wp-caption aligncenter" style="width: 524px"><a
href="http://www.itcfonts.com/fonts/detail.aspx?PID=201246"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/itc.jpg" alt="" title="itc" width="514" height="76" class="size-full wp-image-3358" /></a><p
class="wp-caption-text">I <3 New York</p></div><hr/><h3>Showcase</h3><p>Slab serif type is becoming more and more popular everyday. Since I started collecting examples of effective use of slab serif type, there has been a number of new websites that have launched using this type. A couple of them have been added to the end of the web design showcase.</p><h4>Slab Serif Type in web design</h4><div
id="attachment_3356" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.pallian.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/pallian.jpg" alt="" title="pallian" width="550" height="300" class="size-full wp-image-3356" /></a><p
class="wp-caption-text">Pallian Creative</p></div><br
/><div
id="attachment_3355" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.abreezybaby.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/pinkcollection.jpg" alt="" title="pinkcollection" width="550" height="300" class="size-full wp-image-3355" /></a><p
class="wp-caption-text">Breezy Baby</p></div><br
/><div
id="attachment_3354" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.visitphilly.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/philadelphia.jpg" alt="" title="philadelphia" width="550" height="300" class="size-full wp-image-3354" /></a><p
class="wp-caption-text">Philadelphia</p></div><br
/><div
id="attachment_3353" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.sewweekly.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/sew.jpg" alt="" title="sew" width="550" height="300" class="size-full wp-image-3353" /></a><p
class="wp-caption-text">The Sew Weekly</p></div><br
/><div
id="attachment_3352" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.brianhoff.net/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/brianhoff.jpg" alt="" title="brianhoff" width="550" height="300" class="size-full wp-image-3352" /></a><p
class="wp-caption-text">Brian Hoff</p></div><br
/><div
id="attachment_3351" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.osmondinteractive.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/osmond.jpg" alt="" title="osmond" width="550" height="300" class="size-full wp-image-3351" /></a><p
class="wp-caption-text">Osmond Interactive</p></div><br
/><div
id="attachment_3350" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.enviramedia.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/envira.jpg" alt="" title="envira" width="550" height="300" class="size-full wp-image-3350" /></a><p
class="wp-caption-text">Envira Media</p></div><br
/><div
id="attachment_3349" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.creativehunt.com/shanghai"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/creativehunt.jpg" alt="" title="creativehunt" width="550" height="300" class="size-full wp-image-3349" /></a><p
class="wp-caption-text">CreativeHunt</p></div><br
/><div
id="attachment_3348" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.festivalboreal.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/boreal.jpg" alt="" title="boreal" width="550" height="300" class="size-full wp-image-3348" /></a><p
class="wp-caption-text">Festival Boreal</p></div><br
/><div
id="attachment_3364" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.edgepointchurch.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/edgepoint.jpg" alt="" title="edgepoint" width="550" height="300" class="size-full wp-image-3364" /></a><p
class="wp-caption-text">Edgepoint Church</p></div><br
/><div
id="attachment_3365" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.mutantlabs.co.uk/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/mutantlabs.jpg" alt="" title="mutantlabs" width="550" height="300" class="size-full wp-image-3365" /></a><p
class="wp-caption-text">Mutant Labs</p></div><br
/><div
id="attachment_3461" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.blueskyresumes.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/blye.jpg" alt="" title="blye" width="550" height="300" class="size-full wp-image-3461" /></a><p
class="wp-caption-text">Blue Sky Resumes</p></div><br
/><div
id="attachment_3462" class="wp-caption aligncenter" style="width: 560px"><a
href="http://wedesignwise.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/designwise.jpg" alt="" title="designwise" width="550" height="300" class="size-full wp-image-3462" /></a><p
class="wp-caption-text">DesignWise</p></div><br
/><div
id="attachment_3463" class="wp-caption aligncenter" style="width: 560px"><a
href="http://www.markboultondesign.com/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/mark.jpg" alt="" title="mark" width="550" height="300" class="size-full wp-image-3463" /></a><p
class="wp-caption-text">Mark Boulton Design</p></div><h4>Day to day life</h4><p>Not only are slab serif typefaces and fonts used in websites but they are also used in logos, brochures, magazines, packaging and much more. If I had a decent camera this showcase would have probably been twice as long.</p><div
id="attachment_3346" class="wp-caption aligncenter" style="width: 510px"><a
href="http://www.flickr.com/photos/marginwalker/1188480725/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/kimflorist.jpg" alt="" title="kimflorist" width="500" height="375" class="size-full wp-image-3346" /></a><p
class="wp-caption-text">Kim Florist</p></div><br
/><div
id="attachment_3345" class="wp-caption aligncenter" style="width: 510px"><a
href="http://www.flickr.com/photos/patlejch/3504792893/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/nabytek.jpg" alt="" title="nabytek" width="500" height="333" class="size-full wp-image-3345" /></a><p
class="wp-caption-text">Nábytek</p></div><br
/><div
id="attachment_3344" class="wp-caption aligncenter" style="width: 510px"><a
href="http://www.flickr.com/photos/greenoddysey/4087174638/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/lcc.jpg" alt="" title="lcc" width="500" height="375" class="size-full wp-image-3344" /></a><p
class="wp-caption-text">London County Council</p></div><br
/><div
id="attachment_3343" class="wp-caption aligncenter" style="width: 510px"><a
href="http://www.flickr.com/photos/litherland/2174126298/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/HuntsVille.jpg" alt="" title="HuntsVille" width="500" height="333" class="size-full wp-image-3343" /></a><p
class="wp-caption-text">HuntsVille</p></div><br
/><div
id="attachment_3342" class="wp-caption aligncenter" style="width: 510px"><a
href="http://www.flickr.com/photos/litherland/2966934905/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/hoops.jpg" alt="" title="hoops" width="500" height="375" class="size-full wp-image-3342" /></a><p
class="wp-caption-text">House of hoops</p></div><br
/><div
id="attachment_3341" class="wp-caption aligncenter" style="width: 510px"><a
href="http://www.flickr.com/photos/chrisstcyr/3454266190/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/goldennugget.jpg" alt="" title="goldennugget" width="500" height="375" class="size-full wp-image-3341" /></a><p
class="wp-caption-text">Golden Nugget</p></div><br
/><div
id="attachment_3340" class="wp-caption aligncenter" style="width: 506px"><a
href="http://www.flickr.com/photos/h_porn-o_t/2233425400/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/bonanza.jpg" alt="" title="bonanza" width="496" height="500" class="size-full wp-image-3340" /></a><p
class="wp-caption-text">Bonanza</p></div><br
/><div
id="attachment_3339" class="wp-caption aligncenter" style="width: 510px"><a
href="http://www.flickr.com/photos/crisparmour/3694652637/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/launderette.jpg" alt="" title="launderette" width="500" height="334" class="size-full wp-image-3339" /></a><p
class="wp-caption-text">Launderette</p></div><br
/><div
id="attachment_3338" class="wp-caption aligncenter" style="width: 510px"><a
href="http://www.flickr.com/photos/army-of-neff/3171841246/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/delicious.jpg" alt="" title="delicious" width="500" height="375" class="size-full wp-image-3338" /></a><p
class="wp-caption-text">Delicious</p></div><br
/><div
id="attachment_3337" class="wp-caption aligncenter" style="width: 510px"><a
href="http://www.flickr.com/photos/tripprintpress/1466111858/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/loveballads.jpg" alt="" title="loveballads" width="500" height="375" class="size-full wp-image-3337" /></a><p
class="wp-caption-text">Love Ballads</p></div><br
/><div
id="attachment_3336" class="wp-caption aligncenter" style="width: 510px"><a
href="http://www.flickr.com/photos/six_7_8/3853043998/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/abcde.jpg" alt="" title="abcde" width="500" height="375" class="size-full wp-image-3336" /></a><p
class="wp-caption-text">ABCDE</p></div><br
/><div
id="attachment_3335" class="wp-caption aligncenter" style="width: 510px"><a
href="http://www.flickr.com/photos/25222645@N02/2383926269/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/motel.jpg" alt="" title="motel" width="500" height="363" class="size-full wp-image-3335" /></a><p
class="wp-caption-text">Motel</p></div><br
/><div
id="attachment_3334" class="wp-caption aligncenter" style="width: 341px"><a
href="http://www.flickr.com/photos/kerr/2248761197/"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/onesunday.jpg" alt="" title="onesunday" width="331" height="500" class="size-full wp-image-3334" /></a><p
class="wp-caption-text">One Sunday in December</p></div><h4>Slab serif in Video</h4><p><object
width="560" height="340"><param
name="movie" value="http://www.youtube.com/v/i49vbEXKiaA&#038;hl=en_US&#038;fs=1&#038;"></param><param
name="allowFullScreen" value="true"></param><param
name="allowscriptaccess" value="always"></param><embed
src="http://www.youtube.com/v/i49vbEXKiaA&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p><p><object
width="480" height="385"><param
name="movie" value="http://www.youtube.com/v/NGCcRniLFLI&#038;hl=en_US&#038;fs=1&#038;"></param><param
name="allowFullScreen" value="true"></param><param
name="allowscriptaccess" value="always"></param><embed
src="http://www.youtube.com/v/NGCcRniLFLI&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p><p><object
width="480" height="385"><param
name="movie" value="http://www.youtube.com/v/DbGhC47NSmY&#038;hl=en_US&#038;fs=1&#038;"></param><param
name="allowFullScreen" value="true"></param><param
name="allowscriptaccess" value="always"></param><embed
src="http://www.youtube.com/v/DbGhC47NSmY&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/smashing-slab-serif-typography/feed/</wfw:commentRss> <slash:comments>25</slash:comments> </item> <item><title>#24 Creative Logos of the Week!</title><link>http://blog.creativityden.com/24-creative-logos-of-the-week/</link> <comments>http://blog.creativityden.com/24-creative-logos-of-the-week/#comments</comments> <pubDate>Sat, 13 Feb 2010 09:46:44 +0000</pubDate> <dc:creator>Type08</dc:creator> <category><![CDATA[Logos]]></category> <category><![CDATA[bee]]></category> <category><![CDATA[bees]]></category> <category><![CDATA[buzz]]></category> <category><![CDATA[sting]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=3390</guid> <description><![CDATA[Logos that sting like a BEE
We all have heard what would the world look like without bees. Those little fragile creatures are extremely important for the whole humanity. And that importance inspired some of the logo designers as well. When it comes to messages and metaphors we probably don&#8217;t have enough space to count them [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/onbuzz-150x150.png" alt="" title="onbuzz" width="150" height="150" class="alignnone size-thumbnail wp-image-3400" /></div><div
class="description"> <strong>Logos that sting like a BEE</strong></p><p>We all have heard what would the world look like without bees. Those little fragile creatures are extremely important for the whole humanity. And that importance inspired some of the logo designers as well. When it comes to messages and metaphors we probably don&#8217;t have enough space to count them all here: from the symbol of hard work and dedication to agility or just being extremely organized. Or if we take another route over the shape of the insect itself that provides us with curved but also sharp edged elements to work with. But also not to forget probably the most inspirational part of a very interesting and powerful yellow and black color combination. But being inspired by the bees, as you will see here, it doesn&#8217;t necessarily mean that you have to directly use the exact shape of that insect or copy the exact color scheme: let your imagination flow and final result can be more then interesting. So next time when you see even the smallest insect around, don&#8217;t just squash it but take a moment to explore it fully and let it &#8217;sting&#8217; your senses and creativity.</p></div></div><p><span
id="more-3390"></span><div
id="attachment_3391" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/93837"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/beelieve.png" alt="" title="beelieve" width="325" height="260" class="size-full wp-image-3391" /></a><p
class="wp-caption-text">Beelieve</p></div><br
/><div
id="attachment_3392" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/85341"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/Bee.png" alt="" title="Bee" width="325" height="260" class="size-full wp-image-3392" /></a><p
class="wp-caption-text">Bee</p></div><br
/><div
id="attachment_3393" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/81495"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/efficient.png" alt="" title="efficient" width="325" height="260" class="size-full wp-image-3393" /></a><p
class="wp-caption-text">Efficient Design</p></div><br
/><div
id="attachment_3394" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/76399"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/leditbee.png" alt="" title="leditbee" width="325" height="260" class="size-full wp-image-3394" /></a><p
class="wp-caption-text">Leditbee</p></div><br
/><div
id="attachment_3395" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/87862"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/roklee.png" alt="" title="roklee" width="325" height="260" class="size-full wp-image-3395" /></a><p
class="wp-caption-text">Roklee</p></div><br
/><div
id="attachment_3396" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/62535"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/b.png" alt="" title="b" width="325" height="260" class="size-full wp-image-3396" /></a><p
class="wp-caption-text">B</p></div><br
/><div
id="attachment_3397" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/40562"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/nectar.png" alt="" title="nectar" width="325" height="260" class="size-full wp-image-3397" /></a><p
class="wp-caption-text">Nectar</p></div><br
/><div
id="attachment_3398" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/83111"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/beeflow.png" alt="" title="beeflow" width="325" height="260" class="size-full wp-image-3398" /></a><p
class="wp-caption-text">BeeFlow</p></div><br
/><div
id="attachment_3399" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/79724"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/beeheart.png" alt="" title="beeheart" width="325" height="260" class="size-full wp-image-3399" /></a><p
class="wp-caption-text">Beeheart</p></div><br
/><div
id="attachment_3400" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/92734"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/onbuzz.png" alt="" title="onbuzz" width="325" height="260" class="size-full wp-image-3400" /></a><p
class="wp-caption-text">Onbuzz</p></div></p><p>This time we went down unda, all the way to Perth, Australia to talk with the well known logo designer <a
href="http://logopond.com/members/profile/showcase/5359">Fabian Marchinko</a>, better known by his alias <a
href="http://www.brandsimplicity.com.au">Brandsimplicity</a>. Let&#8217;s ask him is it really &#8217;simple&#8217; to &#8216;brand&#8217; things when it comes to inspirational element such as this small insect that inspired me for this article.</p><p><strong>1) Hello, Fabian! How and when did you decide to use an &#8216;bee inspired&#8217; element for this brand, Onbuzz?</strong></p><p>Currently I’m working with Brandbucket.com, redesigning some of their logos. This one caught my eye as the subject matter involved online chat, this name had that special hook that I look for…something I can bounce off and get the creative juices flowing. I tend to like a lot of Hollywood gossip chat sites and how they are sometimes very cutting or what I call “ With a sting in the tail” …see where I’m going…yep…cool! The “O” from the name in an abstract speech bubble, add a sting… to sell the message and we are home and hosed. <a
href="http://www.brandbucket.com/onbuzz">Onbuzz</a> is born, which is now available with the domain on brandbucket.com.</p><hr/><p><strong>2) Can you pick out 2 or 3 more logos from this selection and tell us why do you like them?</strong></p><p>This one by Alex is extremely clever, it works on so many levels. Using the swarming bee’s to form the “B” is outstanding, this whole concept is a brander&#8217;s dream… I’m also seeing a cool motion animation in my head for this one. What’s not to like about this next one, B by William. Cute to boot and beautifully executed by a very talented designer.</p><hr/><p><strong>3) What do you think, why is this element so inspirational: is it the shape, color scheme, metaphor?</strong></p><p>What I believe to be the most inspiring thing about the bee is they are tireless workers, always slogging away. Personally I feel they are a metaphor for life and how we are day in day out trying to make the honey for our families…too deep eh! Hey, they look cool!</p><hr/><p><strong>4) Do you maybe know of some global brands that use the same inspiration for their own logo?</strong></p><p>Beeline, mobile communication company from Russia.</p><hr/><p><strong>5) Feel free to share here some interesting ways of using a bee in the logo design, especially if you had some other ideas for Onbuzz during the process?</strong></p><p>At one stage I was going to explore the concept of a microphone sting, but at smaller sizes it did not reproduce well…so it got kicked to the curb.</p><p>Cheers for the interview Alen!</p>]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/24-creative-logos-of-the-week/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> <item><title>#23 Creative Logos of the Week!</title><link>http://blog.creativityden.com/23-creative-logos-of-the-week/</link> <comments>http://blog.creativityden.com/23-creative-logos-of-the-week/#comments</comments> <pubDate>Fri, 05 Feb 2010 19:59:39 +0000</pubDate> <dc:creator>Type08</dc:creator> <category><![CDATA[Logos]]></category> <category><![CDATA[cinema]]></category> <category><![CDATA[film]]></category> <category><![CDATA[strip]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=3302</guid> <description><![CDATA[The FILM STRIP inspiration
Trendy or not, there is a lot of film strip inspired logos at the moment. Since graphic designers are very visual people and love to communicate and experience the world around them that way, I bet you that you can&#8217;t find a designer that doesn&#8217;t like watching movies or browsing through some [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/cafe1-150x150.png" alt="" title="cafe" width="150" height="150" class="alignnone size-thumbnail wp-image-3316" /></div><div
class="description"> <strong>The FILM STRIP inspiration</strong></p><p>Trendy or not, there is a lot of film strip inspired logos at the moment. Since graphic designers are very visual people and love to communicate and experience the world around them that way, I bet you that you can&#8217;t find a designer that doesn&#8217;t like watching movies or browsing through some nice photos in magazines or online. And that&#8217;s how we get inspired every day because movies and photos became parts of our everyday life. The media that brings it all to life inspire designers to bring interesting logos to life.<br
/> There is something magical about that simple black/white element that combines the worlds of square and curve and forms into interesting shapes while being put into it&#8217;s purpose. But logos featured in this article show the endless options if you try to play with it a bit: it can form unnatural shapes, it can come as a fusion with other objects around us and it really doesn&#8217;t have to be in black at all! So take a look at this fine examples of well designed logos and once again enter the amazing world of film.</p></div></div><p><span
id="more-3302"></span><br
/><div
id="attachment_3306" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/92300"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/fortune.png" alt="" title="fortune" width="325" height="260" class="size-full wp-image-3306" /></a><p
class="wp-caption-text">Fortune Film</p></div><br
/><div
id="attachment_3307" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/86473"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/georgian.png" alt="" title="georgian" width="325" height="260" class="size-full wp-image-3307" /></a><p
class="wp-caption-text">Georgian Film</p></div><br
/><div
id="attachment_3308" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/53418"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/filmaps.png" alt="" title="filmaps" width="325" height="260" class="size-full wp-image-3308" /></a><p
class="wp-caption-text">Filmaps</p></div><br
/><div
id="attachment_3309" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/6034"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/bananas.png" alt="" title="bananas" width="325" height="260" class="size-full wp-image-3309" /></a><p
class="wp-caption-text">BananasFilms</p></div><br
/><div
id="attachment_3310" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/9634"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/bryant.png" alt="" title="bryant" width="325" height="260" class="size-full wp-image-3310" /></a><p
class="wp-caption-text">Bryant Karnes</p></div><br
/><div
id="attachment_3311" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/84503"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/carousel.png" alt="" title="carousel" width="325" height="260" class="size-full wp-image-3311" /></a><p
class="wp-caption-text">Carousel Media</p></div><br
/><div
id="attachment_3312" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/16328"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/halfless.png" alt="" title="halfless" width="325" height="260" class="size-full wp-image-3312" /></a><p
class="wp-caption-text">Half Less</p></div><br
/><div
id="attachment_3313" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/61156"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/filmlab.png" alt="" title="filmlab" width="325" height="260" class="size-full wp-image-3313" /></a><p
class="wp-caption-text">Filmlab</p></div><br
/><div
id="attachment_3314" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/20041"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/ps.png" alt="" title="ps" width="325" height="260" class="size-full wp-image-3314" /></a><p
class="wp-caption-text">Accelerated PS Training</p></div><br
/><div
id="attachment_3315" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/50790"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/cafe.png" alt="" title="cafe" width="325" height="260" class="size-full wp-image-3315" /></a><p
class="wp-caption-text">Cinema Cafe</p></div></p><p>We have an expert from this field, logo designer <a
href="http://logopond.com/members/profile/showcase/8985">Muamer Adilovich</a> from Bosnia and Herzegovina, a designer of this beautiful &#8216;Cinema Cafe&#8217; piece but also a winner of Wolda award for a film industry<br
/> related logo. Let&#8217;s ask him a few questions about this element.</p><p><strong>1) Hello, Muamer! Tell us please what inspired you to make this interesting fusion of coffee cup and a film role?</strong></p><p>Hi everybody! Well I was thinking a lot about this name, Cinema Cafe, and remembered how I was playing with the used film roles from the old photo cameras as a kid. Interesting thing was pulling them out from their package which made them twirl into nice spiral forms: you all probably know what I am talking about and I&#8217;m sure most of you tried to play that way with them. So when I started to work on this logo I remembered that play and that spiral forms and I grabbed the nearest piece of paper and started drawing first sketches of it. After that it was a familiar process, from digitalization to stylization, etc. As a matter of fact, this logo looks pretty simple now when you look at it, but trust you me, it was technically really complicated to pull off.</p><hr/><p><strong>2) Can you pick out 2 or 3 more logos from this selection and tell us why do you like them?</strong></p><p>All of these logos are interesting in their way, but if I really have to I would pick the one of them: it is Filmaps by Siah Design. Logo is simple, original, it tells the story and reflects well the purpose of the company it represents.</p><hr/><p><strong>3) What do you think, why is this element so inspirational and a bit trendy lately?</strong></p><p>Film strip is an interesting form by itself, it has a kind of retro feel to it yet it&#8217;s still very contemporary and always actual, including the entire story behind it: the analogies, frames, light effects, movement, projection, the feeling. A lot of things can be inspirational if you are really looking around and learn, explore. When it comes to trendy I wouldn&#8217;t agree with that statement because it was in use before in a lot of interesting design forms such as business cards, posters, brochures. It has been here since day one representing companies that come from a field of movie production and movie industry. It can be used for other things as well, photography for example, but my first association when I see a film strip will always be a film/movie.</p><hr/><p><strong>4) Do you maybe know of some &#8216;huge players&#8217; in the movie industry that successfully used this element for their own branding needs?</strong></p><p>New Line Cinema and MGM for example.</p><hr/><p><strong>5) Can you share some quick tips about how to make logos of this kind to be original and interesting?</strong></p><p>Making logos with film strips takes a lot of exploration, effort, time and experience. To make them original, good and interesting you really have to give your best in the means of conceptual thinking and execution skills as well. Quick tip: be good to people and respect others!</p>]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/23-creative-logos-of-the-week/feed/</wfw:commentRss> <slash:comments>8</slash:comments> </item> <item><title>The hidden power of border-radius</title><link>http://blog.creativityden.com/the-hidden-power-of-border-radius-2/</link> <comments>http://blog.creativityden.com/the-hidden-power-of-border-radius-2/#comments</comments> <pubDate>Wed, 03 Feb 2010 21:39:10 +0000</pubDate> <dc:creator>Liam McCabe</dc:creator> <category><![CDATA[Featured]]></category> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Web Design]]></category> <category><![CDATA[border]]></category> <category><![CDATA[border-radius]]></category> <category><![CDATA[circle]]></category> <category><![CDATA[circles]]></category> <category><![CDATA[css]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[curve]]></category> <category><![CDATA[radius]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=3266</guid> <description><![CDATA[Circles and Curvy Shapes with CSS3
So hopefully after reading &#8211; Understanding CSS – Padding, Positioning and CSS3 &#8211; you understand the basics of CSS and have been experimenting with other properties. It is important to remember that some properties will allow you to achieve effects that aren&#8217;t necessarily stated. In this post we will explore [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/venn-150x150.jpg" alt="" title="venn" width="150" height="150" class="alignnone size-thumbnail wp-image-3285" /></div><div
class="description"><strong>Circles and Curvy Shapes with CSS3</strong></p><p>So hopefully after reading &#8211; <a
href="http://blog.creativityden.com/understanding-css-padding-positioning-and-css3/">Understanding CSS – Padding, Positioning and CSS3</a> &#8211; you understand the basics of CSS and have been experimenting with other properties. It is important to remember that some properties will allow you to achieve effects that aren&#8217;t necessarily stated. In this post we will explore the property border-radius and how it can be used to create circles, semi-cricles and quarter-circles. It also has the potential to produce some terrific designs using just CSS &#8211; no images.</p></div></div><p><span
id="more-3266"></span></p><h3>The property</h3><pre class="brush: css;">
.round
{
    border-radius: 5px; /* all corners have a radius of 5px */
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;

    border-radius: 5px 4px 3px 2px; /* corner values go clockwise so, first value is the top left, second, the top right, third, bottom right and fourth, bottom left */
}
</pre><p>Jean of <a
href="http://www.catswhocode.com/">Cats Who Code</a> recently wrote an <a
href="http://www.catswhocode.com/blog/10-ways-to-make-internet-explorer-act-like-a-modern-browser">excellent article which included ways to achieve rounded corners in IE</a>.</p><h3>Circles</h3><h4>A filled circle</h4><p>To render a circle using the border-radius property, simply set the border-radius value to half the width/height. Both width and height should be the same.</p><div
id="attachment_3270" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/circle.jpg" alt="" title="circle" width="300" height="300" class="size-full wp-image-3270" /><p
class="wp-caption-text">A beautifully rendered circle.</p></div><pre class="brush: css;">
#circle
{
		width: 200px;
		height: 200px;
		background-color: #a72525;
		-webkit-border-radius: 100px;
}
</pre><h4>A bordered circle</h4><div
id="attachment_3272" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/circleborder.jpg" alt="" title="circleborder" width="300" height="300" class="size-full wp-image-3272" /><p
class="wp-caption-text">An unfilled circle with border</p></div><pre class="brush: css;">
#circle
{
		width: 200px;
		height: 200px;
		background-color: #efefef; /* Can be set to transparent */
      	border: 3px #a72525 solid;
		-webkit-border-radius: 100px;
}
</pre><p>Due to the way border-radius doesn&#8217;t curve the filled area as well, values for border thickness work well up to 4-5px depending on the size of the circle.</p><h4>Examples of circles with different borders</h4><div
id="attachment_3275" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/circledash.jpg" alt="" title="circledash" width="300" height="300" class="size-full wp-image-3275" /><p
class="wp-caption-text">An unfilled circle with a dashed border</p></div><pre class="brush: css;">
#circle
{
		width: 200px;
		height: 200px;
		background-color: #efefef; /* Can be set to transparent */
      	border: 3px #a72525 dashed;
		-webkit-border-radius: 100px 100px 100px 100px;
}
</pre><h3>Semi Circles and Quarter Circles</h3><h4>Semi-circle</h4><p>To create a semi circle, the width value most be half of the height value. The radius border for the top left and bottom left or top right and bottom right then have to have a value greater than that of the width. A semi-circle of the top and bottom section work much in the same way but with the height being half of the width and with the bottom right and bottom left or the top right and top left have values greater than the height</p><div
id="attachment_3277" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/semicircle.jpg" alt="" title="semicircle" width="300" height="300" class="size-full wp-image-3277" /><p
class="wp-caption-text">Look! A semi-circle</p></div><pre class="brush: css;">
#semicircle
{
		width: 100px;
		height: 200px;
		background-color: #a72525;
		-webkit-border-radius: 200px 0 0 200px;
}
</pre><h4>Quarter circle</h4><p>Very simple to achieve, just set a corner value to the same value as the width/height.<br
/><div
id="attachment_3278" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/quartercircle.jpg" alt="" title="quartercircle" width="300" height="300" class="size-full wp-image-3278" /><p
class="wp-caption-text">A quarter circle.</p></div></p><pre class="brush: css;">
#quartercircle
{
		width: 200px;
		height: 200px;
		background-color: #a72525;
		-webkit-border-radius: 200px 0 0 0;
}
</pre><h4>With different borders</h4><div
id="attachment_3280" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/semiquarter.jpg" alt="" title="semiquarter" width="550" height="300" class="size-full wp-image-3280" /><p
class="wp-caption-text">Same border techniques can be used.</p></div><h3>Overlapping</h3><p>By overlapping two circles you can create some interesting shapes. When overlapping make sure the shape on top has the same colour as the body background colour. You also need to use the position and z-index property to position one circle above the other. Z-index simply relates to layers. An element with a z-index of 1 will overlap an element with a z-index of 0 so long as they are positioned on top of each other.</p><div
id="attachment_3282" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/curvy.jpg" alt="" title="curvy" width="300" height="300" class="size-full wp-image-3282" /><p
class="wp-caption-text">Produce a wonderful arch effect</p></div><pre class="brush: css;">
	#wrapper
	{
		width: 1000px;
		margin: auto;
		position: relative;
	}
	#circle
	{
		position: absolute;
		top: 100px;
		left: 0;
		z-index: 0;
		width: 200px;
		height: 200px;
		background-color: #a72525;
		-webkit-border-radius: 100px;
	}

	#circle1
	{
		position: absolute;
		top: 105px;
		left: 5px;
		z-index: 1;
		width: 200px;
		height: 200px;
		background-color: #efefef;
		-webkit-border-radius: 100px;
	}
</pre><h3>Have some fun</h3><p>These are just a couple effects that I managed to achieve. I am sure you could produce some exceptional art using these techniques. Why not give it a try? <img
src='http://blog.creativityden.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><h4>Moon</h4><div
id="attachment_3283" class="wp-caption aligncenter" style="width: 310px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/moon.jpg" alt="" title="moon" width="300" height="300" class="size-full wp-image-3283" /><p
class="wp-caption-text">A nice little crescent moon</p></div><h4>Colour venn diagram</h4><div
id="attachment_3285" class="wp-caption aligncenter" style="width: 361px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/02/venn.jpg" alt="" title="venn" width="351" height="351" class="size-full wp-image-3285" /><p
class="wp-caption-text">A Venn Diagram</p></div>]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/the-hidden-power-of-border-radius-2/feed/</wfw:commentRss> <slash:comments>88</slash:comments> </item> <item><title>Understanding CSS &#8211; Padding, Positioning and CSS3</title><link>http://blog.creativityden.com/understanding-css-padding-positioning-and-css3/</link> <comments>http://blog.creativityden.com/understanding-css-padding-positioning-and-css3/#comments</comments> <pubDate>Sun, 31 Jan 2010 16:32:38 +0000</pubDate> <dc:creator>KayRoseDesign</dc:creator> <category><![CDATA[Articles]]></category> <category><![CDATA[Tutorials]]></category> <category><![CDATA[css]]></category> <category><![CDATA[css3]]></category> <category><![CDATA[positioning]]></category> <category><![CDATA[understanding css]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=3227</guid> <description><![CDATA[Using CSS3 In Your Daily Coding!
As my first CreativityDen post I&#8217;ve decided to show you all, (mainly beginners to CSS), how to use it effectively in you designs. One of the most frustrating things when coding a website can be not having the skills to bring your .PSD file to life, it happens to most [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"> <img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/preview.png" alt="" title="preview" width="150" height="150" class="alignnone size-full wp-image-3252" /></div><div
class="description"> <strong>Using CSS3 In Your Daily Coding!</strong></p><p>As my first CreativityDen post I&#8217;ve decided to show you all, (mainly beginners to CSS), how to use it effectively in you designs. One of the most frustrating things when coding a website can be not having the skills to bring your .PSD file to life, it happens to most of us, (unless your like me and you learnt to code first), but it doesn&#8217;t have to be that way anymore.</p><p>These methods are trial and error, not every effect works in every design, which is why not every well done site has drop shadow and rounded corners everywhere, so be careful when and where you use them.</p></div></div><p><span
id="more-3227"></span></p><h3>What Exactly Will This Post Do For You?</h3><p> <strong>Please Note: All images in this article are screenshots taken directly from the browser window, no photoshoping here!</strong></p><p> With the release of CSS3, which is now being used more frequently, I&#8217;ve put this little article together for more of a beginner. However you never know, there may be a few tricks you don&#8217;t know.</p><p> I&#8217;m also going to be giving advice on such things as Padding, Margin, Borders and Background Colors, and how to us them effectively.</p><p> It&#8217;s starting to annoy me when people are making something huge out CSS3, yes it is a big evolution in the world of styling a page. However it can be a bit intimidating, so just think of it as normal CSS that you&#8217;ve never used before, because that&#8217;s all it is.</p><p> So as my first post on Creativity Den I am going to cover the CSS tricks that&#8217;ll improve your designs. Taking them from pretty good to awesome! The first thing i would like to cover is the box-shadow effect. It&#8217;s just an easy way of using drop shadow in CSS without using messy background images.</p><h3>The Box Shadow Effect</h3><pre class="brush: css;">
/*Here be the awesome drop shadow/box shadow effect for the web*/
#someRealyCoolDiv {
	width:500px;
	margin:0px auto;
	box-shadow:0px 0px 10px #000;
	-moz-box-shadow:0px 0px 10px #000;
	-webkit-box-shadow:0px 0px 10px #000;
}
</pre><h4>Explanation:</h4><p> <strong>box-shadow:</strong> This is the actual CSS3 specific code for implementing the shadow effect.</p><p> <strong>-moz-box-shadow:</strong> This targets FireFox which doesn&#8217;t understand the standard box-shadow.</p><p> <strong>-webkit-box-shadow:</strong> This targets Safari &amp; Google Chrome mainly, it uses the -webkit- selector which is the advanced CSS3&#8230;let&#8217;s say &#8216;package&#8217;, that Safari uses.<br
/> <em>Please Note: Goolge Chrome is terrible at rendering box-shdow effects!</em></p><div
id="attachment_3234" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/box_shadow.jpg" alt="" title="Box Shadow" width="550" height="250" class="size-full wp-image-3234" /><p
class="wp-caption-text">The Box Shadow Effect</p></div><hr
/><h3>Using Margin, Padding, Borders &amp; Background Colors Successfully</h3><p>We&#8217;ve all made sites or seen sites that could be beautiful, but unfortunately aren&#8217;t because of one small issue: <strong>The overall CSS aesthetics.</strong> Here&#8217;s what some people will have:</p><pre class="brush: css;">
/*POOR/LAZY WORK*/
#someRealyCoolDiv2 {
	width:500px;
	margin:0px auto;
	border:1px solid #000;
	background:#fff;
}
</pre><div
id="attachment_3236" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/margin_padding_poor.jpg" alt="" title="Poor Use Of Margin &amp; Padding" width="550" height="250" class="size-full wp-image-3236" /><p
class="wp-caption-text">Poor Use Of Margin &#038; Padding</p></div><p> Now as you can see, that&#8217;s just terrible, let&#8217;s make it allot better with really basic CSS:</p><pre class="brush: css;">
/*AWESOME/VERY WELL PADDED WORK*/
#someRealyCoolDiv2 {
	width:500px;
	margin:0px auto;
	padding:30px;
	border:1px solid #ccc;
	background:#E6E6E6;
}
</pre><div
id="attachment_3237" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/margin_padding_good.jpg" alt="" title="Good Use Of Margin &amp; Padding." width="550" height="250" class="size-full wp-image-3237" /><p
class="wp-caption-text">Good Use Of Margin &#038; Padding.</p></div><p> There we have it, you see how much cleaner it looks already? &#8211; All I&#8217;ve done is basically add some padding, a little margin, lightened the border and made the background color slightly darker than it was. Which gives a more stylistic effect, but it&#8217;s  mainly because you should, (almost), never use pure white or pure black in a design. The reason being that they&#8217;re both very powerful on the wide spectrum of colors, and strain the eyes when viewing.</p><hr
/><h3>The Text-Shadow Effect</h3><p> Yes, this is practically the same as the box-shadow effect however the effect is for text and the code is written differently. Also the biggest difference is that this effect has two uses.</p><pre class="brush: css;">
/*TEXT-SHADOW WITH A SHADOW LIKE EFFECT*/
#h2 {
	text-shadow:5px 5px 10px #000;
}
</pre><div
id="attachment_3240" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/text_shadow_1.jpg" alt="" title="The Classic Drop Shadow Effect." width="550" height="250" class="size-full wp-image-3240" /><p
class="wp-caption-text">The Classic Drop Shadow Effect.</p></div><p> That&#8217;s the first way of using it, the two 5px values represent the position, the first is left and right and the second is up and down, then the 10px represents the amount of blur wanted. The second is my personal preference: The engraving effect. All you need to do is create a Div with a BG color of #333333 then add a H2 tag with a color of #000000, (you know when i said <em>almost</em> never? yeah, this is the exception), then to that H2 tag add the following code:</p><pre class="brush: css;">
/*TEXT-SHADOW WITH AN ENGRAVE LIKE EFFECT*/
#h2 {
	color:#000000;
	text-shadow:-1px 1px #333;
}
</pre><p> I haven&#8217;t a added a blur amount so the drop shadow stays like the normal text but is moved slightly down, and slightly left, Now you should see something like the following, and by that i mean exactly like the following:</p><div
id="attachment_3241" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/text_shadow_2.jpg" alt="" title="The Engrave Text Effect." width="550" height="250" class="size-full wp-image-3241" /><p
class="wp-caption-text">The Engrave Text Effect.</p></div><hr
/><h3>Working With Positioning</h3><p> OK understanding this can be tricky at first, but just remember that each element is static to begin with and once changed to being relative, absolute or fixed you can accept four different parameters: Top, Right, Bottom and Left.</p><h4>Relative Positioning</h4><p> This is the easiest one to deal with, nothing to fancy going on here, HOWEVER, relative positioning is the base for the other two. A relatively positioned element means that it&#8217;s positioned relatively to it&#8217;s normal position. Don&#8217;t get it? yeah me neither, here&#8217;s a better explanation: All elements on a page are positioned static by default. Changing an elements positioning to relative means it can be moved around on top of other elements while it&#8217;s original position is kept, (like having it&#8217;s seat saved <img
src='http://blog.creativityden.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> ).</p><h4>Absolute Positioning</h4><p> Now, this one seems to confuse people quite allot, it&#8217;s quite simple actually. Here we go: An absolutely positioned element is like a relative element BUT it doesn&#8217;t really notice the other elements around it. (you know, the whole &#8220;Having it&#8217;s seat saved thing&#8230;&#8221;). It just floats around on its merry way.</p><p> It is positioned according to which element that surrounds it is set to relative, i.e. If the surrounding Div is set to relative then it&#8217;ll go 50px from the left of that Div &#8211; If no relative value is set in any Div that surrounds it, it&#8217;ll go 50px from the browser window edge.</p><h4>Fixed Positioning &#8211; The Evil Child Of Positioning!</h4><p> Yes, you read correctly, fixed positioning is the hardest to grasp for most. It&#8217;s this simple: A fixed element can sit on top of everything else, (try and stick to one fixed element per page!), <a
href="http://jeffrey-way.com/">here&#8217;s a perfect example of fixed positioning in action</a>, by the master of web development, Jeffrey Way! &#8211; look at the huge bar along the bottom of the screen.</p><h4>Positioning Examples:</h4><pre class="brush: css;">
#container {
	width:500px;
	position:relative;
	border:1px solid #ccc;
	background:#e6e6e6;
}

.awesomeDiv1 {
	width:250px;
	position:relative;
	left:50px;
	top:0px;
	border:1px solid #666;
	background:#999;
}

.awesomeDiv2 {
	width:250px;
	position:absolute;
	top:100px;
	left:50px;
	border:1px solid #666;
	background:#999;
}

.awesomeDiv3 {
	width:100%;
	position:fixed;
	left:0px;
	bottom:0px;
	border:1px solid #666;
	background:#999;
}
</pre><h4>Explaining Needed!</h4><p> OK, pretty basic code going on here, just a #container Div holding three smaller Div&#8217;s, .awesomeDiv1, .awesomeDiv2 and .awesomeDiv3.</p><p> What you&#8217;ll see if you attempt to use this code is that the first two will be pretty much one after the other in the container Div. You&#8217;ll also notice that the #container Div is only wrapping around the first Div, why? Well as i said earlier, the Absolute positioning is basically in a world of its own, so it doesn&#8217;t see any other elements, hence no other elements see it!</p><p> Then the bar at the bottom, if you make the #container Div 1000px high you&#8217;ll see that the fixed Div, .awesomeDiv3, is still in its position and hasn&#8217;t moved.</p><hr
/><h3>Rounded Corners &#8211; Border Radius</h3><p> Yes i do realize that this has been posted many times over but I thought it was worth adding. Border-radius is a way making the corners of a div, input, textarea etc&#8230; Have a rounded corners effect like in photoshop. Here&#8217;s how:</p><pre class="brush: css;">
/*BORDER-RADIUS - PHPTOSHOP LIKE EFFECT*/
#awesomeDiv {
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}
/*THE OTHER METHOD*/
#awesomeDiv2 {
	border-radius:0px 10px 0px 10px;
	-moz-border-radius:0px 10px 0px 10px;
	-webkit-border-radius:0px 10px 0px 10px;
}
</pre><div
id="attachment_3242" class="wp-caption aligncenter" style="width: 560px"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/rounded_corners.jpg" alt="" title="Rounded Corners With Some CSS3." width="550" height="250" class="size-full wp-image-3242" /><p
class="wp-caption-text">Rounded Corners With Some CSS3.</p></div><p> If your wondering what the difference is, here&#8217;s an explanation: Each 10px/0px value is equal to one corner of the div, it goes like this, Top, Right, Bottom and Left. As you can see it goes round in a clockwise motion. So in my example the top left corner will be straight, the top right will be rounded, the bottom right will be straight and the bottom left will be rounded.</p><p>If your finding it difficult to remember what each value is for just start at the top left corner, (which seems like the most logical corner to start with anyway), and then just go around in a clockwise motion.</p><hr
/><h3>Header &amp; Paragraph Typography</h3><p> This is an area that I&#8217;ve seen many people struggle with, mainly because most designers/developers don&#8217;t take much notice of typography&#8230;or they just don&#8217;t care. Either way, I see sites on a regular basis that could be awesome, (yes, even with good Margin, Padding, Borders &amp; Background Color), which lack in one very important area <strong>Typography</strong>.</p><h4>Crappy Web Page Typography:</h4><pre class="brush: css;">
/*This is a little crappy by my standards*/
h1 {
	font-family:Arial;
	font-size:40px;
	color:#000;
}

h2 {
	font-family:Arial;
	font-size:30px;
	color:#000;
}

h3 {
	font-family:Arial;
	font-size:20px;
	color:#000;
}

p {
	font-family:Arial;
	font-size:14px;
	color:#000;
}
</pre><h4>Good Page Typography:</h4><pre class="brush: css;">
/*This is a pretty good by my standards*/
h1 {
	margin:10px 0px 10px 0px;
	font-family:Arial;
	font-size:2.5em;
	color:#252525;
}

h2 {
	margin:10px 0px 10px 0px;
	font-family:Arial;
	font-size:1.88em;
	color:#333;
}

h3 {
	margin:10px 0px 10px 0px;
	font-family:Arial;
	font-size:1.25em;
	color:#4c4c4c;
}

p {
	margin:0px 0px 20px 0px;
	font-family:Arial;
	font-size:0.88;
	color:#4c4c4c;
	line-height:1.6em;
}
</pre><h4>Explanation:</h4><p> First off we&#8217;ve said goodbye to the Pixel values for all the elements, this is something you&#8217;ll hear alot: <strong>Use EM&#8217;s instead of Pixels for text elements</strong>, It&#8217;s one of those <em>best practices.</em> (I actually use both from time to time, but never on the same project).</p><p> Now i know how some people feel about using Margin inside of text elements as i have done, however i ask you this, if it makes your website look awesome and it validates then why not?</p><hr
/><h3>Conclusion Time</h3><p> I hope you&#8217;ve enjoyed my little article, it should have shown you that taking your time with each and every project is a very valued idea, be sure to spread the word by doing some Re-Tweeting, Digging &amp; Bumping!</p>]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/understanding-css-padding-positioning-and-css3/feed/</wfw:commentRss> <slash:comments>19</slash:comments> </item> <item><title>#22 Creative Logos of the Week!</title><link>http://blog.creativityden.com/22-creative-logos-of-the-week/</link> <comments>http://blog.creativityden.com/22-creative-logos-of-the-week/#comments</comments> <pubDate>Fri, 29 Jan 2010 17:42:32 +0000</pubDate> <dc:creator>Type08</dc:creator> <category><![CDATA[Logos]]></category> <category><![CDATA[logo]]></category> <category><![CDATA[sport]]></category> <category><![CDATA[sports]]></category><guid
isPermaLink="false">http://blog.creativityden.com/?p=3210</guid> <description><![CDATA[Solo designer as a SPORT TEAM member
One of the hardest fields of logo design overall is definitely sport teams logos. It takes a lot of creativity, imagination and execution skills to show the messages of power, agility and dynamics. The base of it lays in the team name and different sports treat those names in [...]]]></description> <content:encoded><![CDATA[<div
class="block"><div
class="image"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/reddogs-150x150.png" alt="" title="reddogs" width="150" height="150" class="alignnone size-thumbnail wp-image-3220" /></div><div
class="description"> <strong>Solo designer as a SPORT TEAM member</strong><p>One of the hardest fields of logo design overall is definitely sport teams logos. It takes a lot of creativity, imagination and execution skills to show the messages of power, agility and dynamics. The base of it lays in the team name and different sports treat those names in different ways: some use weather terms, some animals, some use founder&#8217;s name and some just a name of the town they hale from. One way or the other, only original and nicely detailed solution will get recognition amongst the fans but also provide an extra feeling of loyalty and power for allthe team members as well. While we all know of many sport team logos, especially the ones that we support (I&#8217;ll never forget watching Jordan&#8217;s and Pippen&#8217;s magnificent play) take a look at this new and maybe less known but nice examples of the subject. One thing is for certain, only a designer that really loves this field can create a nice solution and maybe for a second feel as a sport team member he did it for.</p></div></div><p><span
id="more-3210"></span><br
/><div
id="attachment_3211" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/90613"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/texas.png" alt="" title="texas" width="325" height="260" class="size-full wp-image-3211" /></a><p
class="wp-caption-text">Texas Longhorns Hockey</p></div><br
/><div
id="attachment_3212" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/17293"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/boston.png" alt="" title="boston" width="325" height="260" class="size-full wp-image-3212" /></a><p
class="wp-caption-text">Boston Bruins Concept Logo</p></div><br
/><div
id="attachment_3213" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/73826"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/timberwolves.png" alt="" title="timberwolves" width="325" height="260" class="size-full wp-image-3213" /></a><p
class="wp-caption-text">Timberwolves</p></div><br
/><div
id="attachment_3214" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/11828"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/vancouver.png" alt="" title="vancouver" width="325" height="260" class="size-full wp-image-3214" /></a><p
class="wp-caption-text">Vancouver Canucks</p></div><br
/><div
id="attachment_3215" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/58588"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/fresno.png" alt="" title="fresno" width="325" height="260" class="size-full wp-image-3215" /></a><p
class="wp-caption-text">Fresno Fuego FC</p></div><br
/><div
id="attachment_3216" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/64557"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/mineros.png" alt="" title="mineros" width="325" height="260" class="size-full wp-image-3216" /></a><p
class="wp-caption-text">Mineros de parral</p></div><br
/><div
id="attachment_3217" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/78248"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/nighthawks.png" alt="" title="nighthawks" width="325" height="260" class="size-full wp-image-3217" /></a><p
class="wp-caption-text">Nighthawks</p></div><br
/><div
id="attachment_3218" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/56621"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/sh.png" alt="" title="sh" width="325" height="260" class="size-full wp-image-3218" /></a><p
class="wp-caption-text">S.H. United</p></div><br
/><div
id="attachment_3219" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/430"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/olmc.gif" alt="" title="olmc" width="325" height="260" class="size-full wp-image-3219" /></a><p
class="wp-caption-text">OLMC Raider</p></div><br
/><div
id="attachment_3220" class="wp-caption aligncenter" style="width: 335px"><a
href="http://logopond.com/gallery/detail/41140"><img
src="http://blog.creativityden.com/wp-content/uploads/2010/01/reddogs.png" alt="" title="reddogs" width="325" height="260" class="size-full wp-image-3220" /></a><p
class="wp-caption-text">RedDogs</p></div></p><p>This time we have a logo designer <a
href="http://geniuslogo.com/">Milosh Radojevic</a> from Serbia, better known as <a
href="http://logopond.com/members/profile/showcase/6870">Geniuslogo</a>. His &#8216;Red Dogs&#8217; logo is featured here amongst 10 picked for the subject so let&#8217;s ask him a few questions about it.</p><p><strong>1) Hi, Milosh! Tell us please what was the idea behind this logo and why did you do it in such an abstract way?</strong></p><p>I did this logo for a hockey team from Austria but unfortunately the team had some structural problems and it never hit the league at the end so they didn&#8217;t use it after all. My idea was to use a bit different abstract style and to draw an original dog shape. Many people think that I did a good job here so I hope that they are right.</p><hr/><p><strong>2) Can you pick out 2 more logos from this selection and tell us why do you like them?</strong></p><p>Boston Bruins, incredible job, who wouldn&#8217;t love to have a T shirt with this logo on it? Matt is one of the best in this field out there! And the second one would be Canucks by John Slabyk, brilliant execution, he is also a master of the sport team logos.</p><hr/><p><strong>3) What is your general opinion on sport team logos and what is the hardest part of creating one?</strong></p><p>I am a big fan of this logo area and the hardest point is probably being original enough, which is nowadays truly hard in the entire logo design field. Sport team logo design takes a totally different approach because it &#8216;walks&#8217; somewhere between the classic logo and an illustration so only a lot of experience can make you draw that line. I also consider myself to be a beginner here and still have a lot to learn from much better designers then me.</p><hr/><p><strong>4) Can you tell us which sports do you like the most and who&#8217;s logos impress you by quality? </strong></p><p>I am a huge fan of NFL and a classic football. Those sports are extremely popular in my country. If I had to pick out a few I would say Atlantic Falcons, Denver Broncos and Wisconsin-Milwaukee Panthers. I just love them!</p><hr/><p><strong>5) Can you share some quick tips to fresh designers out there that might do a sport team logo soon?</strong></p><p>Well, not any special tips here, it takes a lot of talent and just practice, practice, practice, as much as you can.</p>]]></content:encoded> <wfw:commentRss>http://blog.creativityden.com/22-creative-logos-of-the-week/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> </channel> </rss>
<!-- This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching 9/24 queries in 0.084 seconds using disk

Served from: aamoiaqqaq.c05.gridserver.com @ 2010-03-11 16:41:30 -->