<?xml version='1.0' encoding='ISO-8859-1'?>
<rss version="2.0">
  <channel>
    <title>Mando Group Ltd - heidi_seymour</title>
    <link>http://www.mandogroup.com</link>
    <description>Web Development and Design Agency based in Liverpool, UK.</description>
    <item>
      <title>The Mad Hatters</title>
      <link>http://www.mandogroup.com/blog/author/heidi_seymour/The_Mad_Hatters/102.aspx</link>
      <description>&lt;p&gt;&lt;img alt="Six Thinking Hats" src="/Resources/Images/2aa06f03-6e73-4c5c-a371-8cb1f3e11205.jpg"/&gt;&lt;/p&gt;
&lt;p style="CLEAR: left"&gt;&lt;strong&gt;We often look to children and marvel at how creative they are. Ideas flow and there seems no limit to a child's imagination. There is no mystery here; children simply have not yet learned how things should be.&lt;/strong&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Instant judgement is the enemy of creativity...&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;Edward De Bono&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;We as adults judge ourselves and&amp;nbsp;our ideas far too harshly. So before an idea has even begun to grow the majority of us&amp;nbsp;have already slammed the metaphorical door shut on that thought or idea.&lt;/p&gt;
&lt;p&gt;On Tues of last week we held a creativity workshop. The key aim was to get everyone to begin to make creative thinking part of everyday thinking.&amp;nbsp; We would stimulate the right of brain, get everyone to access his or her inner child and see what we could create in a safe non-judgemental arena. Oooo and have lots of fun in the process.&lt;/p&gt;
&lt;p&gt;We've also embraced the &amp;quot;6 thinking hats system&amp;quot; for creative thinking at Mando&amp;nbsp;as devised by Edward DeBono. The thinker can put one on or take one&amp;nbsp;these metaphorical hats off to indicate the type of thinking that is being used. Read more about the process here...&amp;nbsp; &lt;a href="http://www.debonogroup.com/"&gt;http://www.debonogroup.com/&lt;/a&gt; I can thoroughly recommend it for quick, productive meetings!&lt;/p&gt;
&lt;p&gt;Anyway back to the workshop. We would use the 6 thinking hats system as our inspiration. The brief was simple. Brainstorm, design and create a hat that embodies all the characteristics, feelings, nature that the hat represents.&lt;/p&gt;
&lt;p&gt;Three teams of two got together and were each randomly given one of the following statements to generate ideas from. &lt;/p&gt;
&lt;h3&gt;Red Hat:&lt;/h3&gt;
&lt;p&gt;This covers intuition, feelings and emotions. The red hat allows the thinker to put forward an intuition without any need to justify it.&lt;/p&gt;
&lt;h3&gt;Yellow Hat:&lt;/h3&gt;
&lt;p&gt;This hat finds reasons why something will work and why it will offer benefits. It can be used in looking forward to the results of some proposed action. It can also be used to find something of value in what has already happened.&lt;/p&gt;
&lt;h3&gt;Green Hat:&lt;/h3&gt;
&lt;p&gt;This is the hat of creativity, alternatives, proposals, what is interesting, provocations, and changes.&lt;/p&gt;
&lt;p&gt;They were instructed to break the rules! There is no such thing as a bad idea. Just perhaps more appropriate ones. &lt;/p&gt;
&lt;p&gt;I wasn't disappointed in the results... In the short hour that they had this is what they did!&lt;/p&gt;</description>
    </item>
    <item>
      <title>Printing Webpages &amp; Maintaining the Brand</title>
      <link>http://www.mandogroup.com/blog/author/heidi_seymour/Printing_Webpages__Maintaining_the_Brand/70.aspx</link>
      <description>&lt;p&gt;The importance of a client&amp;rsquo;s brand or identity relies heavily on consistency. This as a designer is one of the factors we consider and carry through the whole life cycle of a project. However recently I encountered a little puzzle in achieving this consistency.&lt;/p&gt;
&lt;h3&gt;The Puzzle&lt;/h3&gt;
&lt;p&gt; The puzzle is this. I apologise in advance if this gets a little technical. Web Designers you may like to skip to the solution?&lt;/p&gt;
&lt;p&gt; At first it seemed quite simple. I was working on the CSS (cascading style sheet) that controls the appearance of a web page when printed. I was keen to have the company&amp;rsquo;s logo at the head of these pages. The problem was the logo on website was placed on a dark background (see Image 1). &lt;/p&gt;
&lt;p&gt; &lt;img style="float: none;" alt="08 Business Connect Logo - Blue Background" src="/Resources/Images/1e699296-d669-4cf9-8019-80de54486de8.jpg"/&gt;&lt;br/&gt;
Image 1: Logo with a dark background&lt;/p&gt;
&lt;p&gt; When I printed the web page the logo looked like this&amp;hellip;&lt;/p&gt;
&lt;p&gt;&lt;img style="float: none;" alt="08 Business Connect Logo - GIF" src="/Resources/Images/fa2a73f9-2b45-4684-b00d-fcde9de10a41.gif"/&gt; &lt;br/&gt;
Image 2: Logo appearance when printed.&lt;/p&gt;
&lt;p&gt; Now the reason the image looked like this was when building a website, to ensure the logo blends seamlessly with the background, various parts of the image are made transparent allowing the background colour to show through. The problem is when the web page is printed, in the majority of cases, background colours are not printed (see Image 2).&lt;/p&gt;
&lt;p&gt; So here was my puzzle. I needed the logo to look great on paper and on screen. The only way is to have two logos, one for each scenario. &lt;/p&gt;
&lt;h3&gt; The Solution&lt;/h3&gt;
&lt;p&gt; So how was I to achieve this and the html still be accessible and semantically correct? With CSS it is possible to show and hide elements within the html. However I couldn&amp;rsquo;t possibly have the two logos sitting in the html because:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt; a)&amp;nbsp;&amp;nbsp; &amp;nbsp;Assistive software (e.g. screen readers for the visually impaired) would pick both them up and read both instances of the image out to the user. To get around this issue an empty alt tag could be placed on the image and the screen reader would then ignore the image but&amp;hellip;&lt;/li&gt;
    &lt;li&gt;b)&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;hellip;What the user&amp;rsquo;s browser couldn&amp;rsquo;t interpret the CSS or the user had them switched off. In this instance the user would see both logos on the web page and on the printed page.&lt;/li&gt;
    &lt;li&gt;c)&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;hellip;Also it&amp;rsquo;s not great html semantics to have two elements placed directly after one another essentially communicating the same thing. This could be seen as confusing.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I knew I had to come up with a CSS solution to my problem. So ensued much head scratching and discussion with colleagues over various solutions. None of which were ideal because of a, b and c&amp;hellip; I didn&amp;rsquo;t want to &amp;ldquo;hack it&amp;rdquo;. Then it came to me. Yes it was a light bulb moment. &lt;/p&gt;
&lt;p&gt; The problem was thus. We needed two logos for the 2 different media types and 3 scenarios:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt; Print&lt;/li&gt;
    &lt;li&gt;Screen &amp;ndash; CSS enabled&lt;/li&gt;
    &lt;li&gt;Screen &amp;ndash; CSS disabled&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt; I mention earlier that when a web page is printed, background colours are not printed. This is also true of images that are used as a background element in CSS.&lt;/p&gt;
&lt;p&gt; e.g&lt;br/&gt;
&lt;code&gt; .logo &lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;background-image:url(logo.gif);&lt;br/&gt;
}&lt;/code&gt;&lt;/p&gt;
&lt;p&gt; This image would not appear when printed. I could use this inability to my advantage. So I went ahead and created an additional logo for the print scenario (see Image 3).&lt;/p&gt;
&lt;p&gt; &lt;img style="float: none;" alt="08 Business Connect Logo - White Background" src="/Resources/Images/f6b9b4f3-2696-4d0d-ac09-349629424958.jpg"/&gt;&lt;/p&gt;
&lt;p&gt; This is the image that would be referenced directly in the html. This would ensure that those printing or those who didn&amp;rsquo;t have their CSS enabled on their browser would see a great version of the brand logo.&lt;/p&gt;
&lt;p&gt; Html is as follows:&lt;/p&gt;
&lt;p&gt;&lt;code&gt; &amp;lt;h1&amp;gt;&amp;lt;a href=&amp;quot;/Content/Home.aspx&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;/_common/img/logo-print.gif&amp;quot;&amp;nbsp; alt=&amp;quot;&amp;quot; class=&amp;quot;printlogo&amp;quot; /&amp;gt;&amp;lt;span&amp;gt;08 Business Connect&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h1&amp;gt;&lt;/code&gt; &lt;/p&gt;
&lt;p&gt; This logo however needed to be hidden from the majority of users browsing the website. I added class=&amp;rdquo;printlogo&amp;rdquo; to the image, this class would be picked up by the CSS for screen where I&amp;rsquo;d be able to state it not to be displayed. &lt;/p&gt;
&lt;p&gt; The screen logo could then be applied as a &amp;ldquo;background image&amp;rdquo; to a different part of the html code.&lt;/p&gt;
&lt;p&gt; Print CSS is as follows:&lt;/p&gt;
&lt;p&gt;&lt;code&gt; img.printlogo, h1 span&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;display:block;&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;br/&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt; Screen CSS is as follows:&lt;/p&gt;
&lt;p&gt;&lt;code&gt; img.printlogo&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;display:none;&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;br/&gt;
h1 a&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;background:transparent url(/_common/img/logo.gif) no-repeat 0 0;&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;display:block;&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;width:325px;&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;height:68px;&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;br/&gt;
h1 span &lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;{&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;position:absolute;&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;left:-5000px;&lt;br/&gt;
&amp;nbsp;&amp;nbsp; &amp;nbsp;}&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br/&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt; You may question why &amp;lt;span&amp;gt;08 Business Connect&amp;lt;/span&amp;gt; was added. Would not an alt tag on the image be sufficient? Well this was added because the display:none on this image. In some instances the css value &amp;ldquo;display:none&amp;rdquo; really does display none. So any alt tag place on the image would be lost for those users. The solution here is to place rich text place within the H1, which is good for those users, good for search engines and good for semantics. It only needs to be placed off the visible web page so we can&amp;rsquo;t see it. Here I have used absolute positioning to make that possible using the span tag.&lt;/p&gt;
&lt;p&gt; So that&amp;rsquo;s it a relatively simple solution but it works. Try it out. Visit the newly launched 08 Business Connect website.&lt;/p&gt;
&lt;p&gt;&lt;a target="_blank" href="http://www.08businessconnect.com"&gt; www.08businessconnect.com&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Designing Responsibly for a Greener Planet. </title>
      <link>http://www.mandogroup.com/blog/author/heidi_seymour/Designing_Responsibly_for_a_Greener_Planet_/44.aspx</link>
      <description>&lt;p&gt;&lt;img style="FLOAT: none; WIDTH: 263px; HEIGHT: 263px" alt="Carbon Footprint" src="/Resources/Images/0acafce8-2f34-4e00-80ae-f4c6047abb38.jpg"/&gt;&lt;/p&gt;
&lt;p&gt;Recently everyone seems to be talking about how big your carbon footprint is? Of this I&amp;rsquo;m not entirely sure. It seems impossible to measure? However I do believe in treading lightly on this planet. My mantra to be &amp;ldquo;greener&amp;rdquo; has always the three R&amp;rsquo;s: &lt;span style="FONT-WEIGHT: bold"&gt;reduce &lt;/span&gt;my personal impact on the environment and &lt;span style="FONT-WEIGHT: bold"&gt;re-use&lt;/span&gt; or &lt;span style="FONT-WEIGHT: bold"&gt;recycle&lt;/span&gt; whenever I can. I was pretty much convinced I was doing a good job until I read a recent article in a design magazine (Creative Review). &lt;/p&gt;
&lt;p&gt;Strangely it hadn&amp;rsquo;t really occurred to me what environmental impact my creative endeavours could have. I was content that Mando Group sent e-cards instead of Christmas cards and used recycled paper but is there much more? Well it seems there is an awful lot more I as a graphic designer can do. It is as simple as selecting a lighter weighted paper to using non-toxic ink. &lt;/p&gt;
&lt;p&gt;Other points I picked up from the article were:&lt;/p&gt;
&lt;ul&gt;
    &lt;li&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Think small? &lt;/span&gt;A reduced format can save on paper, ink, water, emissions and could also mean your client could save on postage costs. &lt;/li&gt;
    &lt;li&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Can it be recycled? &lt;/span&gt;Binding glues and laminations can mean the item won&amp;rsquo;t be able to be recycled at all. &lt;/li&gt;
    &lt;li&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Are the materials used sustainable? &lt;/span&gt;For example use vegetable oil based inks rather than more conventional mineral-oil inks. &lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Visit &lt;a href="http://www.lovelyasatree.com"&gt;www.lovelyasatree.com&lt;/a&gt; to learn more. If you&amp;rsquo;re a graphic designer, I strongly urge you to do so! &lt;/p&gt;</description>
    </item>
  </channel>
</rss>