<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
>

<channel>
	<title>The Net Impact &#187; Web Design</title>
	<atom:link href="http://blog.thenetimpact.com/tag/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.thenetimpact.com</link>
	<description>Social Media Marketing &#124; Web Design &#124; SEO &#124; Web Marketing</description>
	<lastBuildDate>Fri, 18 May 2012 19:52:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<!-- podcast_generator="Blubrry PowerPress/3.0.1" -->
	<itunes:summary>Social Media Marketing | Web Design | SEO | Web Marketing</itunes:summary>
	<itunes:author>The Net Impact</itunes:author>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://blog.thenetimpact.com/wp-content/plugins/powerpress/itunes_default.jpg" />
	<itunes:subtitle>Social Media Marketing | Web Design | SEO | Web Marketing</itunes:subtitle>
	<image>
		<title>The Net Impact &#187; Web Design</title>
		<url>http://blog.thenetimpact.com/wp-content/plugins/powerpress/rss_default.jpg</url>
		<link>http://blog.thenetimpact.com</link>
	</image>
		<item>
		<title>Simple CSS: Custom Highlighted Text</title>
		<link>http://blog.thenetimpact.com/2012/05/simple-css-custom-highlighted-text/</link>
		<comments>http://blog.thenetimpact.com/2012/05/simple-css-custom-highlighted-text/#comments</comments>
		<pubDate>Thu, 03 May 2012 19:43:52 +0000</pubDate>
		<dc:creator>Kevin Collins</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Strategy]]></category>
		<category><![CDATA[background color]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[CSS selectors]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[design code]]></category>
		<category><![CDATA[font color]]></category>
		<category><![CDATA[highlight text]]></category>

		<guid isPermaLink="false">http://blog.thenetimpact.com/?p=3241</guid>
		<description><![CDATA[Here’s a quick little “How-To&#8221; that adds a nice little touch to a webpage or website design. It allows you to change the colors of user highlighted text using CSS3. To test it out highlight the text below: This is Red &#124; This is Orange &#124; This is Green &#124; This is Blue NOTE: This [...]]]></description>
			<content:encoded><![CDATA[<p>Here’s a quick little “How-To&#8221; that adds a nice little touch to a webpage or website design. It allows you to change the colors of user highlighted text using CSS3. To test it out highlight the text below:</p>
<p><span class="unidev">This is Red </span><span class="java">| This is Orange </span><span class="dotnet">| This is Green </span><span class="mobile">| This is Blue </span></p>
<p><strong>NOTE: This trick isn’t compatible with Internet Explorere 8 or below but it does work with most other modern browsers. To do this you use three simple CSS selectors:</strong><em></p>
<p>::selection</p>
<p>::-moz-selection</p>
<p>::-webkit-selection</p>
<p>Then you simply define the background color and the font color you would like.</p>
<p>::selection{</p>
<p>background-color: #A50D1A;</p>
<p>color:#FFF;</p>
<p>}</p>
<p>::-moz-selection{</p>
<p>background-color: #A50D1A;</p>
<p>color:#FFF;</p>
<p>}</p>
<p>::-webkit-selection{</p>
<p>background-color: #A50D1A;</p>
<p>color:#FFF;</p>
<p>}</p>
<p>One important thing to note is that in order for the style to work across all modern browsers you must use each selector.  The selector works just like any other and could be used in conjunction with an id, class, or specified element. For example, I’ve provided the code for the demo at the beginning of this blog post. <a title="Highlight Code" href="http://blog.thenetimpact.com/wp-content/uploads/Highlight-Code.docx">Click here to download the demo code.</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thenetimpact.com/2012/05/simple-css-custom-highlighted-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TNI Trend List: Smartphones Use in Offline Purchases, HTML5 UX Changes</title>
		<link>http://blog.thenetimpact.com/2012/02/tni-trend-list-smartphones-use-offline-purchases-html5-ux-changes/</link>
		<comments>http://blog.thenetimpact.com/2012/02/tni-trend-list-smartphones-use-offline-purchases-html5-ux-changes/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 20:54:09 +0000</pubDate>
		<dc:creator>Pat Niday</dc:creator>
				<category><![CDATA[Mobile Marketing]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[TNI Trend List]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Marketing]]></category>
		<category><![CDATA[Web Strategy]]></category>
		<category><![CDATA[google search trends]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[mobile applications and websites]]></category>
		<category><![CDATA[smartphone mobile shopping]]></category>
		<category><![CDATA[trend list]]></category>
		<category><![CDATA[UX design]]></category>

		<guid isPermaLink="false">http://blog.thenetimpact.com/?p=3027</guid>
		<description><![CDATA[The Net Impact Trend List is a weekly look at relevant news, blogs, trending searches, and our client successes. For those interested in social media, SEO, and web development, trend on. Worth a Look This week Google released a report on mobile and online shopping during the 2011 holiday season. The data suggests that 46% [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #808080"><em>The Net Impact Trend List is a weekly look at relevant news, blogs, trending searches, and our client successes. For those interested in social media, SEO, and web development, trend on.</em></span></p>
<h2 align="center"><strong><span style="text-decoration: underline">Worth a Look</span></strong></h2>
<ul>
<li>
<div id="attachment_2489" class="wp-caption alignright" style="width: 234px"><a href="http://blog.thenetimpact.com/wp-content/uploads/iphone4s.jpg"><img class=" wp-image-2489 " src="http://blog.thenetimpact.com/wp-content/uploads/iphone4s.jpg" alt="The iPhone 4s" width="224" height="139" /></a><p class="wp-caption-text">Smartphones played a major part in online and offline purchases</p></div>
<p>This week Google released a report on mobile and online shopping during the 2011 holiday season. The data suggests that <a title="Smartphones and tablets influence consumer purchasing decisions on mobile, online and in store" href="http://googlemobileads.blogspot.com/2012/02/smartphones-and-tablets-influence.html">46% of online shoppers researched a purchase on their smartphone before buying offline</a> in store, along with many other figures demonstrating the prevalence of smartphones in the modern purchasing process. With so much shopping behavior tied to smartphone usage, smart <a title="The Net Impact | Mobile Marketing | Mobile Website Strategy" href="http://www.thenetimpact.com/mobile-marketing.aspx">mobile marketing</a> and mobile site design are more important than ever.</li>
<li>Flash is slowly but surely making way for HTML5, but what does that mean for the user experience? This week UXBooth looks at designers and users are <a title="What the Demise of Flash Means for the User Experience" href="http://www.uxbooth.com/blog/what-the-demise-of-flash-means-for-the-user-experience/">adapting to HTML5</a>. At TNI we also look forward to providing a “delightfully inconsistent experience on any device” with HTML5.</li>
<li>And for a little fun this Valentine’s Day, check out this <a title="Matt’s Proposal with Words | MobileFWD" href="http://mobilefwd.com/blog/?p=26">marriage proposal through Words with Friends</a>, the popular mobile application. Quite a creative way to pop the question!</li>
</ul>
<h2 align="center"><strong><span style="text-decoration: underline">Trending Searches</span></strong></h2>
<p>Find out the search terms that have been trending on Google during the past week. Data was gathered using <a title="Google Insights for Search" href="http://www.google.com/insights/search/">Google’s Insights for Search</a> tool.</p>
<p>This week five of the top ten rising searches on Google were related to the tragic death of singer Whitney Houston. Also, Jeremy Lin of the New York Knicks was a major source of search traffic after buzzing through social media circles with the hashtag #Linsanity.</p>
<ol>
<li>1. whitney (Breakout)</li>
<li>2. whitney houston (Breakout)</li>
<li>3. whitney houston dead (Breakout)</li>
<li>4. whitney houston death (Breakout)</li>
<li>5. whitney houston news (Breakout)</li>
<li>6. jeremy lin (+1,850%)</li>
<li>7. the vow (+300%)</li>
<li>8. beyonce (+150%)</li>
<li>9. powerball (+150%)</li>
<li>10. tmz (+110%)</li>
</ol>
<h2 align="center"><strong><span style="text-decoration: underline">TNI Partner Spotlight</span></strong></h2>
<ul>
<li>Big congratulations to The Stolar Partnership (@StolarLaw)! Associate Charla Claypool is to be <a title="Charla Claypool Honored by The St. Louis American Foundation " href="http://www.stolarlaw.com/news-details.aspx?article=1942&amp;articlegroup=618">honored by The St. Louis American Foundation</a> later this month for her commitment to the community!</li>
<li>Packaging firm TricorBraun <a title="@TricorBraun" href="https://twitter.com/#%21/tricorbraun/status/166611256105644032">filled us in on Twitter</a>: one minute of popping bubble wrap provides equivalent stress relief of a 33 minute massage. How relaxing!</li>
<li>Finally, we want to say congrats to Simpatico-Home for the <a title="Simpatico-Home | Facebook" href="https://www.facebook.com/permalink.php?story_fbid=185478918223677&amp;id=101051309986349" target="_blank">&#8220;Best New Product Award&#8221; </a>at the New York International Gift Fair. Way to go!</li>
</ul>
<p><span style="color: #808080"><em>Stay up to date on industry news and commentary, TNI happenings, and events with web experts. Sign up for </em></span><a title="Sign up for the Impact Update | The Net Impact" href="http://www.thenetimpact.com/newsletters.aspx"><em>The Impact Update</em></a><span style="color: #808080"><em> today!</em></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thenetimpact.com/2012/02/tni-trend-list-smartphones-use-offline-purchases-html5-ux-changes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TNI Trend List: Does Google+ Work for Businesses?, “Web Second” Design</title>
		<link>http://blog.thenetimpact.com/2012/02/tni-trend-list-does-google-work-for-businesses-web-second-design/</link>
		<comments>http://blog.thenetimpact.com/2012/02/tni-trend-list-does-google-work-for-businesses-web-second-design/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 15:38:45 +0000</pubDate>
		<dc:creator>Pat Niday</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[TNI Trend List]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Marketing]]></category>
		<category><![CDATA[Web Strategy]]></category>
		<category><![CDATA[google plus for business]]></category>
		<category><![CDATA[google plus pages]]></category>
		<category><![CDATA[mobile first web design]]></category>
		<category><![CDATA[trend list]]></category>
		<category><![CDATA[trending searches]]></category>
		<category><![CDATA[twitter monitoring]]></category>

		<guid isPermaLink="false">http://blog.thenetimpact.com/?p=2974</guid>
		<description><![CDATA[The Net Impact Trend List is a weekly look at relevant news, blogs, trending searches, and our client successes. For those interested in social media, SEO, and web development, trend on.  Worth a Look This week we were reminded to choose our tweets with care. While many know employers and other entities can easily monitor [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #808080"><em>The Net Impact Trend List is a weekly look at relevant news, blogs, trending searches, and our client successes. For those interested in social media, SEO, and web development, trend on.</em></span></p>
<h2 align="center"> <strong><span style="text-decoration: underline">Worth a Look</span></strong></h2>
<ul>
<li>This week we were reminded to choose our tweets with care. While many know employers and other entities can easily monitor Twitter, it may surprise some to see agencies acting on this information.  Surely, no one is more surprised than the man who was <a title="Twitter users beware: Homeland Security isn’t laughing" href="http://gigaom.com/2012/01/30/twitter-users-beware-homeland-security-isnt-laughing/" target="_blank">detained by Homeland Security for offensive tweets</a>.<strong></strong></li>
<li>Since Google+ started offering brand pages on their social network, small and medium businesses has been hesitant to join. This week the New York Times asks, <a title="Does Google+ Offer Businesses an Edge?" href="http://boss.blogs.nytimes.com/2012/01/30/does-google-offer-businesses-an-edge/" target="_blank">Does Google+ Offer Businesses an Edge?</a>Click the link for a great case study of a small company strategically using Circles and +1’s to leverage the unique strengths of Google+.
<p><div id="attachment_2979" class="wp-caption aligncenter" style="width: 510px"><a title="Does Google+ Offer Businesses an Edge?" href="http://boss.blogs.nytimes.com/2012/01/30/does-google-offer-businesses-an-edge/" target="_blank"><img class="size-full wp-image-2979" src="http://blog.thenetimpact.com/wp-content/uploads/Google-Plus-Logo.png" alt="Google Plus Social Network Logo" width="500" height="267" /></a><p class="wp-caption-text">Can Small and Medium Sized Business Get and Advantage with Google+?</p></div></li>
<li>The “Mobile First” web design philosophy has been gaining momentum in recent years as more and more web traffic shifts to the mobile space. However this philosophy, which prioritizes the experience of mobile users, has led to <a title="'Mobile First' gaining momentum, but so is 'Web Second'" href="http://www.itworld.com/mobile-wireless/245607/mobile-first-gaining-momentum-so-web-second" target="_blank">the “web second” movement</a>. Web second emphasizes the need to design non-mobile sites to take advantage of the capabilities of desktop browsing, instead of simply displaying a slightly modified mobile site to all users.<strong></strong></li>
</ul>
<h2 align="center"><strong><span style="text-decoration: underline">Trending Searches</span></strong></h2>
<p>Find out the search terms that have been trending on Google during the past week. Data was gathered using <a title="Google Insights for Search" href="http://www.google.com/insights/search/" target="_blank">Google’s Insights for Search</a> tool.</p>
<p>This week search traffic spiked with the announcement of this year’s Oscar nominees and tax season went into full swing with high amounts of “IRS” related searches.</p>
<ol>
<li>1. oscar nominations 2012 (+1,200%)</li>
<li>2. demi moore (+1,050%)</li>
<li>3. irs refund (+250%)</li>
<li>4. australian open (+100%)</li>
<li>5. heidi klum (+100%)</li>
<li>6. republican debate (+80%)</li>
<li>7. super bowl 2012 (+80% )</li>
<li>8. h&amp;r block (+60%)</li>
<li>9. irs (+60%)</li>
<li>10. seal (+60%)</li>
</ol>
<h2 align="center"><strong><span style="text-decoration: underline">TNI Partner Spotlight</span></strong></h2>
<ul>
<li>We’re excited for the national exposure and attention that our partner Nawgan is receiving! Check out <a title="An Energy Shot for the Brain | Wall Street Journal" href="http://online.wsj.com/article/SB10001424052970203806504577178970931093522.html" target="_blank">Nawgan in the Wall Street Journal</a>.</li>
<li>Non-profit partner Karla Smith Foundation was recently featured on the local news to tell their story and promote their upcoming Stigma and Suicide event. See their story on <a title="Stigma And Suicide: Finding Resources For Families" href="http://www.fox2now.com/news/morningshow/ktvi-stigma-and-suicide-family-resource-event-012912,0,7131857.story" target="_blank">combatting mental illness stigma here</a>.</li>
</ul>
<p><span style="color: #808080"><em>Stay up to date on industry news and commentary, TNI happenings, and events with web experts. Sign up for </em></span><a title="Sign up for the Impact Update | The Net Impact" href="http://www.thenetimpact.com/newsletters.aspx" target="_blank"><em>The Impact Update</em></a><span style="color: #808080"><em> today!</em></span></p>
<p><em><span style="color: #808080">Image from: (CC)</span> <a title="Magnet 4 Marketing dot Net/Flickr " href="http://www.flickr.com/photos/vanmarcianoart/6076488268/">Magnet 4 Marketing dot Net/Flickr </a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thenetimpact.com/2012/02/tni-trend-list-does-google-work-for-businesses-web-second-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Duplication and Rotation with Adobe Illustrator’s Transform Tool</title>
		<link>http://blog.thenetimpact.com/2011/12/duplication-and-rotation-with-adobe-illustrators-transform-tool/</link>
		<comments>http://blog.thenetimpact.com/2011/12/duplication-and-rotation-with-adobe-illustrators-transform-tool/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 17:24:15 +0000</pubDate>
		<dc:creator>Liz Maritz</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Adobe Illustrator]]></category>
		<category><![CDATA[copy image]]></category>
		<category><![CDATA[duplicate image]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[logo design]]></category>
		<category><![CDATA[rotate image]]></category>
		<category><![CDATA[scale image]]></category>
		<category><![CDATA[transform tool]]></category>

		<guid isPermaLink="false">http://blog.thenetimpact.com/?p=2821</guid>
		<description><![CDATA[Adobe Illustrator’s transform function allows designers to scale, duplicate and rotate objects or graphics. As we will illustrate in this blog post, scaling, duplication and rotation provide incredibly robust design functionality. We&#8217;ll create a good basic graphic that allows designers to illustrate the functionality of the transform tool. Let’s get started and see if you can guess [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe Illustrator’s transform function allows designers to scale, duplicate and rotate objects or graphics. As we will illustrate in this blog post, scaling, duplication and rotation provide incredibly robust design functionality.</p>
<p>We&#8217;ll create a good basic graphic that allows designers to illustrate the functionality of the transform tool. Let’s get started and see if you can guess what we&#8217;re making.</p>
<h2>Step One: The Base Image</h2>
<p>Create a graphic like the image below. The image below is a distorted rectangle, a hexagon and some pen tool scribbles.</p>
<table class="aligncenter">
<tbody>
<tr>
<td><a href="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-create-a-graphic.png"><img class="wp-image-2824 aligncenter" title="transform-tool-create-a-graphic" src="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-create-a-graphic-231x300.png" alt="adobe illustrator drawing" width="176" height="238" /></a></td>
</tr>
</tbody>
</table>
<h2>Step Two: Transform Tool for Scaling and Duplication</h2>
<p>This is where the transform tool comes into play. Select the distorted hexagon with the direct select tool so that the hexagon is now in isolation mode. In isolation mode go to <strong>EFFECT &gt; DISTORT &amp; TRANSFORM</strong> and select <strong>TRANSFORM</strong> to open the Transform Effect box. With the Transform Effect box open, fill in the scale, move, copies and reference point settings. The settings you choose might differ from the settings used for this example so play around with the numbers and see which settings look best. Below is a screen shot of the settings used with this illustration.</p>
<table class="aligncenter">
<tbody>
<tr>
<td><a href="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-duplication-effect-copy-paste.png"><img class="alignleft  wp-image-2825" title="transform-tool-duplication-effect-copy-paste" src="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-duplication-effect-copy-paste-221x300.png" alt="adobe illustrator duplication effect" width="154" height="232" /></a></td>
<td><a href="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-duplication-effect-copy-paste-2.png"><img class="alignleft  wp-image-2826" title="transform-tool-duplication-effect-copy-paste-2" src="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-duplication-effect-copy-paste-2-300x255.png" alt="settings for adobe illustrator exercise" width="231" height="182" /></a></td>
</tr>
</tbody>
</table>
<h2>Step Three: Grouping and Rotating on an Axis</h2>
<p>The transform tool will duplicate a group of graphics. So go ahead and group the hexagon, stem (distorted rectangle) and pen tool scribbles by selecting all three objects and then selecting <strong>OBJECT &gt; GROUP</strong>. With the objects grouped, select the grouping with the selection tool and once again go to <strong>EFFECT &gt; DISTORT &amp; TRANSFORM </strong>and select <strong>TRANSFORM</strong> to open the Transform Effect box. The Transform Effect box will display the default settings since the transform effect is applied to a new group of objects. The settings you choose for this step should match the settings displayed below. With the settings in place, select &#8220;OK&#8221; and you’ll notice the object reflects along the x-axis.</p>
<table class="aligncenter">
<tbody>
<tr>
<td><a href="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-reflect-x-axis-2.png"><img class="alignleft  wp-image-2829" title="transform-tool-reflect-x-axis-2" src="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-reflect-x-axis-2-250x300.png" alt="Adobe Illustrator reflection effect" width="151" height="227" /></a></td>
<td><a href="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-reflect-x-axis.png"><img class="alignleft  wp-image-2828" title="transform-tool-reflect-x-axis" src="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-reflect-x-axis-300x254.png" alt="Adobe Illustrator transform tool reflection function settings" width="214" height="174" /></a></td>
</tr>
</tbody>
</table>
<h2>Step Four. Grouping and Rotation on a Center Point</h2>
<p> This is where the object takes form&#8230;and it&#8217;s a SNOWFLAKE! Using the transform tool a second time on the same group of objects go to <strong>EFFECT &gt; DISTORT &amp; TRANSFORM</strong> and select <strong>TRANSFORM</strong> to open the Transform Effect box. Note: It may seem tedious to reapply a second transformation to the same grouping but it is to apply a separate transformation effect to the group because it will create the wrong rotation effect without individual transformation settings.  If you get a warming message, click continue. The settings you choose for this step should match the settings displayed below. You’ll notice the object rotates 6 additional times around a center point.</p>
<table class="aligncenter">
<tbody>
<tr>
<td><a href="http://blog.thenetimpact.com/wp-content/uploads/tranform-tool-direct-selection-effect.png"><img class="alignleft  wp-image-2823" title="tranform-tool-direct-selection-effect" src="http://blog.thenetimpact.com/wp-content/uploads/tranform-tool-direct-selection-effect-294x300.png" alt="Adobe Illustrator direct selection effect, rotation function" width="219" height="225" /></a></td>
<td><a href="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-rotate-around-a-circle.png"><img class="alignleft  wp-image-2830" title="transform-tool-rotate-around-a-circle" src="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-rotate-around-a-circle-300x254.png" alt="Adobe Illustrator rotate an object transform tool settings" width="197" height="185" /></a></td>
</tr>
</tbody>
</table>
<h2>Step Five: Direct Selection to Tweak Image</h2>
<p> Using the direct selection tool, you can change the entire look and feel of any aspect of the snowflake. See how the final snowflake dramatically differs from the completed snowflake in step four. It is for this reason that using a single object grouping makes such a big difference in a design that uses rotation and duplication. If the objects were manually duplicated and rotated they would not link together and Illustrator would read those object groupings as separate objects. A change to one would not force a change in the others &#8211; something I like to call the Kaleidoscope Effect.</p>
<table class="aligncenter">
<tbody>
<tr>
<td><a href="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-graphic-design-final.png"><img class="alignleft size-medium wp-image-2827" title="transform-tool-graphic-design-final" src="http://blog.thenetimpact.com/wp-content/uploads/transform-tool-graphic-design-final-300x269.png" alt="Adobe Illustrator transform tool" width="300" height="269" /></a></td>
</tr>
</tbody>
</table>
<p>Interested in learning more about how web design and graphic design can improve your company&#8217;s communication and marketing efforts? Visit <a title="The Net Impact web marketing, web design and web development company" href="http://www.thenetimpact.com" target="_blank">The Net Impact</a> online!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thenetimpact.com/2011/12/duplication-and-rotation-with-adobe-illustrators-transform-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Net Impact Takes Home Six TAM Awards</title>
		<link>http://blog.thenetimpact.com/2010/10/the-net-impact-takes-home-six-tam-awards/</link>
		<comments>http://blog.thenetimpact.com/2010/10/the-net-impact-takes-home-six-tam-awards/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 19:06:05 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Marketing]]></category>
		<category><![CDATA[Web Strategy]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[TAM Awards]]></category>

		<guid isPermaLink="false">http://blog.thenetimpact.com/?p=1392</guid>
		<description><![CDATA[ The Net Impact Web Design Team Wins Six Targeted Advertising and Marketing (TAM) Awards On September 29th The Net Impact team gathered at the Starlight Roof at the Chase Park Plaza, turned circus -themed extravaganza, for their first appearance at the TAM Awards Showcase. The Targeted Advertising &#38; Marketing (TAM) awards party showcased the best B2B advertising, marketing, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"> <strong><em>The Net Impact Web Design Team Wins Six Targeted Advertising and Marketing (TAM) Awards</em> </strong></p>
<p style="text-align: left;">On September 29th The Net Impact team gathered at the Starlight Roof at the Chase Park Plaza, turned circus -themed extravaganza, for their first appearance at the <a title="TAM Awards" href="https://bma-stl.worldsecuresystems.com/tam-awards-party.htm" target="_blank">TAM Awards </a>Showcase. The Targeted Advertising &amp; Marketing (TAM) awards party showcased the best B2B advertising, marketing, corporate and professional communications in the St. Louis region and honored the agencies, companies and individuals who created them.  The Net Impact proudly took home six TAM awards this year and swept the Bronze, Silver and Gold awards in the <a title="Social Media Marketing" href="http://www.thenetimpact.com/social-media.aspx" target="_blank">Social Media Marketing </a>Initiative Category.</p>
<p style="text-align: left;"> </p>
<p style="text-align: center;"><a href="http://www.thenetimpact.com/web-design.aspx"><img class="    aligncenter" style="margin-left: 4px; margin-right: 4px;" title="The Net Impact at The TAM Awards" src="http://blog.thenetimpact.com/wp-content/uploads/tni-at-tam.jpg" alt="" width="358" height="262" /></a></p>
<p style="text-align: left;"> </p>
<p style="text-align: left;">“The TAM Awards are a great benchmark for defining excellence in advertising and marketing in the St. Louis area, and I am very proud of <a title="Web Design and Internet Marketing" href="http://www.thenetimpact.com/" target="_blank">The Net Impact</a>&#8216;s accomplishments in this competitive market.  These awards are a great reinforcement of our clients and our teams truly integrated, best-in-class work,” said Steve Thomas, President of The Net Impact.<em><strong> </strong></em></p>
<p style="text-align: left;"><em><strong> </strong></em></p>
<p style="text-align: left;"><em><strong>The Net Impact team took home the following awards at the 2010 TAM Awards:</strong></em></p>
<p style="text-align: left;">• <strong>Gold –Social Media Marketing Initiative</strong><br />
<span style="text-decoration: underline;">Entry Title:</span>  Go HomeBuyer! Custom Designed Facebook Page (<a href="http://www.facebook.com/GoHomebuyer">www.facebook.com/GoHomebuyer</a>)<br />
<span style="text-decoration: underline;">Category Name:</span> Social Media Marketing Initiative<br />
<span style="text-decoration: underline;">Target Audience:</span>  First Time Homebuyers<br />
<span style="text-decoration: underline;">Single Most Important Objective:</span> To provide easy access to Go Hombuyer!’s tools and information offered, as well as drive targeted traffic to their website through a strong social media presence.<br />
<span style="text-decoration: underline;">Results Achieved:</span> The <a title="Social Media Design" href="http://www.thenetimpact.com/social-media-design.aspx" target="_blank">custom designed Facebook page </a>increased brand awareness and website traffic. In addition, vendors became more aware of Go Homebuyer!’s wide variety of services and sponsorship interest increased.</p>
<p style="text-align: left;">• <strong>Silver –Social Media Marketing Initiative</strong></p>
<p style="text-align: left;"><span style="text-decoration: underline;">Entry Title:</span>  The City of Wentzville (<a href="http://www.facebook.com/Wentzville">www.facebook.com/Wentzville</a>)<br />
<span style="text-decoration: underline;">Category Name:</span>  Social Media Marketing Initiative<br />
<span style="text-decoration: underline;">Target Audience:</span> Current Residents, Business Owners, Prospective Residents<br />
<span style="text-decoration: underline;">Single Most Important Objective:</span> To improve the communication among the City of Wentzville’s community.<br />
<span style="text-decoration: underline;">Results Achieved:</span> The visually appealing <a title="Facebook Page" href="http://www.facebook.com/TheNetImpact" target="_blank">Facebook page </a>serves as a platform for Wentzville’s community to share valuable information about their city. This information includes: resident services, business services, economic development, things to do in the city and garage sales.</p>
<p><strong>•<strong> Bronze –</strong></strong><strong><strong>Website Development E-Commerce</strong></strong></p>
<p><span style="text-decoration: underline;">Entry Title:</span>  Bausch &amp; Lomb Storzeye (<a href="http://www.storzeye.com/">http://www.storzeye.com/</a>)<br />
<span style="text-decoration: underline;">Target Audience:</span> Hospital Administrators/ Buyers, Medical Equipment Buyers and Doctors<br />
Single Most Important Objective:  To showcase their high quality products in order to increase sales.<br />
<span style="text-decoration: underline;">Results Achieved:</span>  The new website design includes enhancements to the ways in which products are displayed and indexed on the sites. Website visitors can now search for instruments, set-up a wish list and add products to an online shopping cart. In addition, the website increases user engagement by including improved product detail with “click to enlarge” functionality on all product images and product videos.</p>
<p>•<strong> Bronze –Electronic Direct Email</strong>                                                                                                                          </p>
<p><span style="text-decoration: underline;">Entry Title:</span>  Sensient Email/Landing Page (<a href="http://www.sensientfusionatift.com/">http://www.sensientfusionatift.com/</a>)<br />
<span style="text-decoration: underline;">Category Name:</span>  Electronic Direct Marketing / Product or Service, Business Meeting or Conference<br />
<span style="text-decoration: underline;">Target Audience:</span> ITF Conference Attendees, Entire Sensient Client Base and Sensient’s Food Colors division<br />
<span style="text-decoration: underline;">Single Most Important Objective:</span> Appeal to two different target audiences in order to announce Sensient’s presence at the IFT Annual Conference and to build awareness around Sensient’s new product, Fusion.<br />
<span style="text-decoration: underline;">Results Achieved:</span> Two different <a title="Email Marketing" href="http://www.thenetimpact.com/email-marketing.aspx" target="_blank">email marketing </a>blasts were created in order to appeal to two different audiences. The email campaign drove targeted traffic to the landing page <a href="http://www.sensientfusionatift.com/">http://www.sensientfusionatift.com/</a>, which showcased Sensient’s new product and included details regarding their upcoming presence at the tradeshow.<br />
<strong> </strong></p>
<p><strong>• Bronze –</strong><strong>Website Developement – Landing Page</strong></p>
<p><span style="text-decoration: underline;">Entry Title:</span>  Sensient (<a href="http://www.sensientfusionatift.com/">http://www.sensientfusionatift.com/</a>)<br />
Category Name: Website Development; Landing Page<br />
<span style="text-decoration: underline;">Target Audience:</span> ITF Conference Attendees, Entire Sensient Client Base and Sensient’s Food Colors division<br />
Single Most Important Objective:  To place focus on introducing Sensient’s new product line and announcing their participation at the upcoming Expo.<br />
<span style="text-decoration: underline;">Results Achieved:</span> In addition to increasing awareness surrounding Sensient’s new product and their presence at the tradeshow, the <a title="Landing Page" href="http://www.thenetimpact.com/microsite-design.aspx" target="_blank">landing page </a>provided the opportunity for visitors to request further information on their company and included a link to Sensient’s home page.</p>
<p><strong>• Bronze –Social Media Marketing Initiative</strong></p>
<p><span style="text-decoration: underline;">Entry Title:</span>  Roho Custom Designed Facebook Page/Landing Page (<a href="http://www.facebook.com/therohogroup#!/therohogroup?v=app_6009294086">http://www.facebook.com/therohogroup#!/therohogroup?v=app_6009294086</a>)<br />
<span style="text-decoration: underline;">Category Name:</span> Social Media Marketing Initiative<br />
<span style="text-decoration: underline;">Target Audience:</span> Medical Professionals and Wheelchair Users<br />
Single Most Important Objective: To encourage fans to sign up for their online newsletter in order to increase sales.<br />
<span style="text-decoration: underline;">Results Achieved:</span> Drove traffic to the ROHO Group’s landing page, intheknow.therohogroup.com, to entice people to sign up for their <a title="Online Newsletter" href="http://www.thenetimpact.com/newsletters.aspx" target="_blank">online newsletter </a>which offers information on new products, promotions, events, ROHO updates, Indsutry news and more.</p>
<p>Congratulations to Kayle Mclean, Angela Trokey, Randy Verbeck, Dave Poninski, Sean Enzwiler, Derek Bemis and Mandy Christanell for all of your hard work this year at TNI!</p>
<p style="text-align: center;"><a href="http://www.thenetimpact.com/social-media-design.aspx"><img class="alignleft size-full wp-image-1397" title="Accepting all three Social Media Marketing Initiative awards" src="http://blog.thenetimpact.com/wp-content/uploads/tni-at-tams-3.jpg" alt="" width="369" height="261" /></a><a href="http://www.thenetimpact.com/web-design.aspx"></a></p>
<p> </p>
<p style="text-align: center;"><a title="TNI on Facebook" href="http://www.facebook.com/pages/manage/#!/album.php?aid=259767&amp;id=121158751095" target="_blank"><em><strong>Check out more great pictures from the 2010 TAM Awards!</strong></em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thenetimpact.com/2010/10/the-net-impact-takes-home-six-tam-awards/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Auctori:law Hires Vickie Hendricks to Steer Business Development</title>
		<link>http://blog.thenetimpact.com/2010/07/auctorilaw-hires-vickie-hendricks-to-steer-business-development/</link>
		<comments>http://blog.thenetimpact.com/2010/07/auctorilaw-hires-vickie-hendricks-to-steer-business-development/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 18:56:11 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Internet and Law]]></category>
		<category><![CDATA[legal content management system]]></category>
		<category><![CDATA[legal website design]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blog.thenetimpact.com/?p=1327</guid>
		<description><![CDATA[The Net Impact&#8217;s partner, Auctori:law, a leader in legal web design, Internet marketing and content management for the legal industry, is proud to announce the recent hire of Vickie Hendricks as Director of  Business Development. Hendricks joins Auctori:law with 25 years of experience in helping law firms firms achieve their marketing goals. She will be [...]]]></description>
			<content:encoded><![CDATA[<p>The Net Impact&#8217;s partner, Auctori:law, a leader in <a title="Legal Web Design" href="http://www.auctorilaw.com/" target="_blank">legal web design</a>, Internet marketing and content management for the legal industry, is proud to announce the recent hire of Vickie Hendricks as Director of  Business Development. Hendricks joins Auctori:law with 25 years of experience in helping law firms firms achieve their marketing goals. She will be responsible for all business development efforts within Auctori:law.</p>
<p>Vickie’s many responsibilities as Director include developing business growth opportunities, building and maintaining relationships with existing clients and prospects, as well as marketing and selling the Auctori:law <a title="Legal Content Management System" href="http://www.auctorilaw.com/" target="_blank">legal content management system</a> and Auctori:law’s wide range of Internet marketing and web design services. Vickie brings with her an extensive background in the legal online marketing industry, and we are excited to have her on board!</p>
<p style="text-align: center;"><a title="Auctori:law Press Release" href="http://www.prweb.com/releases/LawFirmMarketing/legalCMS/prweb4235674.htm" target="_blank"><em>Read the Press Release</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thenetimpact.com/2010/07/auctorilaw-hires-vickie-hendricks-to-steer-business-development/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TNI Teams With Auctori:city to Provide Cities with a Well Designed and Effective Website</title>
		<link>http://blog.thenetimpact.com/2010/06/the-net-impact-teams-with-auctoricity-to-provide-cities-with-an-effective-website/</link>
		<comments>http://blog.thenetimpact.com/2010/06/the-net-impact-teams-with-auctoricity-to-provide-cities-with-an-effective-website/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 14:49:25 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Web Strategy]]></category>
		<category><![CDATA[city content management system]]></category>
		<category><![CDATA[City website design]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.thenetimpact.com/?p=1292</guid>
		<description><![CDATA[Auctori:city, a Microsoft Certified web content management system designed specifically for municipalities and built for search engine optimization, launched on June 9, 2010. A silo of the Auctori, an innovation of Unidev, the city content management system was created to meet the specific online needs of city and government websites. Auctori:city has partnered with The Net [...]]]></description>
			<content:encoded><![CDATA[<p>Auctori:city, a Microsoft Certified web content management system designed specifically for municipalities and built for search engine optimization, launched on June 9, 2010. A silo of the Auctori, an innovation of Unidev, the <a title="city content management system" onclick="linkClick( this.href );" href="http://www.auctoricity.com/" target="_blank">city content management system</a> was created to meet the specific online needs of city and government websites.</p>
<p>Auctori:city has partnered with The Net Impact to offer custom <a title="Web Design" href="http://www.auctoricity.com/web-design.aspx" target="_blank">web design </a>and Internet marketing services to Auctori:city clients. In addition to city web design and Internet marketing services, through this partnership, Auctori:city offers <a title="Social Media Marketing" onclick="linkClick( this.href );" href="http://www.auctoricity.com/social-media-marketing.aspx" target="_blank">social media marketing</a> services such as city social media design and management. With the Auctori:city <a title="Facebook Marketing" href="http://www.auctoricity.com/facebook-module.aspx" target="_blank">Facebook module</a>, an article, news, event update or press release will automatically populate a city’s Facebook page through an RSS feed. This option saves time and effort for Auctori:city users by allowing them to keep their social media marketing current from one main interface. In addition, Auctori:city allows you to have multiple RSS feeds for different social media applications.</p>
<p style="text-align: center;"><a href="http://www.auctoricity.com/"><img class="size-full wp-image-1294  aligncenter" title="City Content Management System" src="http://blog.thenetimpact.com/wp-content/uploads/logo_auctori_city.gif" alt="" width="250" height="75" /></a></p>
<p>“Today’s citizens want a more active, participatory relationship with their government and to have 24/7 access to reliable and valuable information that affects their everyday lives, and there is no better vehicle to reach a community than a city’s website,” said Steve Thomas, President of The Net Impact. “We are proud to partner with Auctori:city to offer cities a functionality-based website that improves the direct interaction with their community.”</p>
<p style="text-align: center;"><a title="Unidev Introduces a Content Management System Designed for Municipalities" href="http://www.prweb.com/releases/cityCMS/contentmanagementsystem/prweb4152384.htm" target="_blank"><em>Read the Press Release!</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thenetimpact.com/2010/06/the-net-impact-teams-with-auctoricity-to-provide-cities-with-an-effective-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TNI Designers Work as a Team to Create Logo Design</title>
		<link>http://blog.thenetimpact.com/2010/03/tni%e2%80%99s-design-team-works-as-a-team-to-create-effective-logo-design/</link>
		<comments>http://blog.thenetimpact.com/2010/03/tni%e2%80%99s-design-team-works-as-a-team-to-create-effective-logo-design/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 16:38:36 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Strategy]]></category>
		<category><![CDATA[custom design]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[logo design]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://blog.thenetimpact.com/?p=1145</guid>
		<description><![CDATA[ Logo Design-Tag Team Style Suggested music to listen to while reading &#8211; http://www.jango.com/music/Tag+Team?l=0 Your logo design is a key part of your company’s Internet marketing strategy. In order to establish brand identity, your logo should be instantly recognizable, reflect confidence and credibility in your company, while communicating who you are and what you do. Your [...]]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;"><span style="font-size: small;"><strong><span style="font-size: small;"> Logo Design-Tag Team Style</span></strong></span></div>
<p style="text-align: center;"><em>Suggested music to listen to while reading &#8211; </em><a href="http://www.jango.com/music/Tag+Team?l=0"><span style="text-decoration: underline;"><span style="color: #0000ff; font-size: small;"><span style="color: #0000ff; font-size: small;"><em>http://www.jango.com/music/Tag+Team?l=0</em></span></span></span></a></p>
<div style="text-align: left;"><span style="font-size: small;"><span style="font-size: small;"><span style="font-size: small;"><span style="font-size: small;"><span style="font-size: small;"><span style="font-size: small;"><span style="font-size: small;"><span style="font-size: small;">Your <a href="http://www.thenetimpact.com/logo-design.aspx" target="_blank">logo design </a>is a key part of your company’s <a href="http://www.thenetimpact.com/" target="_blank">Internet marketing strategy</a></span></span><span style="font-size: small;"><span style="font-size: small;"><span style="font-size: small;">. In order to establish brand identity, your logo should be instantly recognizable, reflect confidence and credibility in your company, while communicating who you are and what you do. Your logo is much more than a symbol or image, it essentially becomes the face of your company. </span></span></span></span></span></span></span></span></span></div>
<div>
<p style="text-align: center;">
<p style="text-align: center;">
<div style="text-align: left;"><span style="font-size: small;"><span style="font-size: small;"><span style="font-size: small;"><span style="font-size: small;">Tied in with an effective look and feel, a good logo can have an instant &#8220;Ah-Ha&#8221; factor with people who have seen your company’s advertising or website. Apple, Coca-Cola, McDonalds, Google, Nike, Target….. I don’t even need to show these iconic logos, because we all have them imprinted in our minds. These recognizable images are incorporated into all aspects of these brands’ marketing strategies, including their <a href="http://www.thenetimpact.com/social-media.aspx" target="_blank">social media</a></span></span></span></span><span style="font-size: small;"><a href="http://www.thenetimpact.com/social-media.aspx" target="_blank"> </a>networks, television advertisements and print and <a href="http://www.thenetimpact.com/website-design.aspx" target="_blank">website design</a>. The consistency of logo use creates a cohesive campaign and image that becomes almost inseparable from your brand. 　</span></div>
<div><span style="font-size: small;"> </span></div>
<div style="text-align: left;"><span style="font-size: small;"><span style="font-size: small;">So you want to design a logo, but where do you begin?! Creating a logo is not only a matter of &#8220;creativity&#8221;, it also requires knowledge, discipline and organization. It is important to understand the needs of your client in order to effectively offer the solution that meets their objectives. The word logo means &#8220;idea, thought or word&#8221;. Having a solid concept, or idea, can translate all the client’s needs and give the <a href="http://www.thenetimpact.com/website-design.aspx" target="_blank">web design </a>team something to work from to visually communicate these ideas.</span></span></div>
<div><span style="font-size: small;"><span style="font-size: small;"> </span></span></div>
<div style="text-align: left;"><span style="font-size: small;"><span style="font-size: small;">A logo The Net Impact team recently designed was for the <a href="http://www.changeamind.org/" target="_blank">&#8220;Change a Mind, Change a Life&#8221;</a> Event. This event, which will take place the weekend of April 16th in St. Louis, is an unprecedented mental health awareness and anti-stigma campaign created by the joint efforts of the <a href="http://www.karlasmithfoundation.org/" target="_blank">Karla Smith Foundation</a>, BringChange2Mind and Glenn Close.</span></span></div>
<div><span style="font-size: small;"><span style="font-size: small;"> </span></span></div>
<div style="text-align: left;"><span style="font-size: small;"><span style="font-size: small;">After meeting with the members of the Karla Smith Foundation, and getting the requirements and guidelines for the logo from the organization, three designers worked to create the perfect logo for the highly- anticipated event. KSF told the design team they wanted the logo to be &#8220;esoteric&#8221; and consist of an image of a head or a mind. So, after visiting dictionary.com, the three designers independently put their thoughts into designs and each came up with their own ideas for the logo. After collaborating and discussing all of their viewpoints, they shared all of the ideas to the customer to see what direction the customer was leaning towards.</span></span></div>
<div><span style="font-size: small;"><span style="font-size: small;"> </span></span> </div>
<div style="text-align: left;"><span style="font-size: small;"><span style="font-size: small;"><strong><span style="font-size: small;">The end result:</span></strong><strong><span style="font-size: small;"> </span></strong><span> </span> </span></span></div>
<div><span> </span><span> </span><span> </span></div>
<div><span> </span></div>
<div><span></span></div>
<p><span></p>
<p style="text-align: center;"><a href="http://blog.thenetimpact.com/wp-content/uploads/Final-KSF-logo.gif"><strong><img class="size-full wp-image-1146    aligncenter" title="Final KSF logo" src="http://blog.thenetimpact.com/wp-content/uploads/Final-KSF-logo.gif" alt="" width="273" height="104" /></strong></a> </p>
<p style="text-align: left;"><span style="font-size: small;">In creating the logo as a team, the designers were able to build on each individual’s strengths and bring more options to the table when presenting to the client. There are many famous logos that were created using the tag team design method, including the recently <a href="http://www.st-louis-web-design.com/index.php/2010/03/its%c2%a0mtv-minus-the-music-television/" target="_blank">redesigned iconic MTV Logo</a>, which was originally designed by Frank Olinsky and a team of designers.</span>At the Net Impact, we understand how critical logo design is, and will work with your company to produce a logo solution that meets your objectives. To learn more about The Net Impact’s logo design services, <a href="http://www.thenetimpact.com/contact.aspx" target="_blank">contact us today!</a></p>
<p style="text-align: center;"><em>What innovative strategies do you use when creating a custom logo design?  </em> </p>
<p> </p>
<p></span></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.thenetimpact.com/2010/03/tni%e2%80%99s-design-team-works-as-a-team-to-create-effective-logo-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auctori Drives AIRHAWK’s Website to Boost Bottom Line</title>
		<link>http://blog.thenetimpact.com/2010/03/auctori-drives-airhawk%e2%80%99s-website-to-boost-bottom-line/</link>
		<comments>http://blog.thenetimpact.com/2010/03/auctori-drives-airhawk%e2%80%99s-website-to-boost-bottom-line/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 19:25:41 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[Web Marketing]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[SEO St. Louis]]></category>
		<category><![CDATA[web content management system]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.thenetimpact.com/?p=1138</guid>
		<description><![CDATA[TNI and XG-AD Combine Forces to Create Website for Premium Motorcycle Comfort Seating System AIRHAWK, a comfort seating system for motorcycles manufactured by ROHO Group Inc., announces the March 18, 2010 launch of their website, www.airhawk.net. The Net Impact and XG-ad, a full service advertising agency specializing in print advertising, combined services to create the website [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">TNI and XG-AD Combine Forces to Create Website for Premium Motorcycle Comfort Seating System</p>
<p style="text-align: left;">AIRHAWK, a comfort seating system for motorcycles manufactured by ROHO Group Inc., announces the March 18, 2010 launch of their website, <a title="Click this link." onclick="linkClick( this.href );" href="http://www.airhawk.net/" target="_blank"></a><a onclick="linkClick( this.href );" href="http://www.airhawk.net" target="_blank">www.airhawk.net</a>. The Net Impact and XG-ad, a full service advertising agency specializing in print advertising, combined services to create the website design for the comfort seating system’s website, which is powered by the Auctori, <a title="Click this link." onclick="linkClick( this.href );" href="http://www.auctori.com/" target="_blank">web content management system</a> (WCMS) built for search engine optimization.</p>
<p style="text-align: left;">AIRHAWK’s parent company, <a href="http://www.rohogroup.com/" target="_blank">The ROHO Group Inc.</a>, approached our team to work with AIRHAWK&#8217;s print advertising agency, XG-ad, to create the web design for the premium product&#8217;s website. We took XG-AD’s Phohotshop design work, and made it web ready before placing it into the Auctori web content management system. The Auctori solution provides AIRHAWK with the opportunity to strengthen their Internet presence and their overall brand reputation by giving users a cutting edge yet professional site as well as the power to maintain their content in real time.</p>
<p style="text-align: left;">&#8220;This was one of the smoothest web launches I&#8217;ve managed.  We had the best of both worlds for design and internet marketing utilizing The Net Impact and XG-Ad.  The design is edgy and fresh while the back-end that I oversee is so user-friendly, easy to understand and of course, completely <a href="http://www.thenetimpact.com/search-engine-optimization.aspx" target="_blank">search engine optimized</a>.  These two companies made a great team and in the end, produced a fantastic site that we are very proud of and excited to promote,&#8221; said Rebecca Heckert, eMarketing Coordinator, The ROHO GROUP.</p>
<p style="text-align: center;"><a href="http://www.prweb.com/releases/2010/03/prweb3750444.htm" target="_blank">Read the Full Press Release! </a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thenetimpact.com/2010/03/auctori-drives-airhawk%e2%80%99s-website-to-boost-bottom-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Season&#8217;s Greetings from The Net Impact!</title>
		<link>http://blog.thenetimpact.com/2009/12/seasons-greetings-from-the-net-impact/</link>
		<comments>http://blog.thenetimpact.com/2009/12/seasons-greetings-from-the-net-impact/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 21:29:18 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Web Marketing]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[SEO St. Louis]]></category>
		<category><![CDATA[SEO Strategies]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design St. Louis]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://blog.thenetimpact.com/?p=860</guid>
		<description><![CDATA[Here&#8217;s some Internet Marketing and Web Design Yuletide Cheer from The Net Impact &#8230; &#8216;Twas the night before Christmas and all cross the &#8216;net, Marketers were hoping, Click-throughs, their site to get. The stockings were hung by the modem with care, In hopes that St. Nicholas would leave new software. The retailers were twittering instead [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><span style="color: #ff0000;"><strong>Here&#8217;s some Internet Marketing and Web Design Yuletide Cheer from The Net Impact &#8230;</strong></span></p>
<p style="text-align: center;">&#8216;Twas the night before Christmas and all cross the &#8216;net,<br />
Marketers were hoping, Click-throughs, their site to get.<br />
The stockings were hung by the modem with care,<br />
In hopes that St. Nicholas would leave new software.</p>
<p style="text-align: center;">The retailers were <a title="TNI on Twitter" href="http://www.twitter.com/thenetimpact" target="_blank">twittering</a> instead of in their beds,<br />
While visions of last minute shoppers danced in their heads.<br />
The online forums were busy with commotion,<br />
as I had just settled down for the latest <a title="TNI on Facebook" href="http://www.thefacebook.com/thenetimpact" target="_blank">Facebook</a> promotion.</p>
<p style="text-align: center;">When in my email inbox there arose such a buzz,<br />
I logged off my Facebook page to see what this fuss was.<br />
Then what to my tired eyes should appear,<br />
But an inbox packed full of late holiday cheer!</p>
<p style="text-align: center;">O&#8217; how my <a title="Googel Analytics Consulting" href="http://analytics.thenetimpact.com/" target="_blank">Google analytics </a>had flew,<br />
So many hits, I didn&#8217;t know what to do!�<br />
With visitors and goals increasing so quick,<br />
I knew in a second it had to be the pay per click.</p>
<p style="text-align: center;"><em>&#8220;Now Google, Bing and Facebook searches are mounting!<br />
My metrics are filled with clicks to be a counting!&#8221;</em></p>
<p style="text-align: center;">Now my search engine rankings on a daily basis fly,<br />
I&#8217;ve never had so many potential clients interested to buy.<br />
So many visitors&#8217; my website did attract,<br />
I knew all this online success was due to The Net Impact.</p>
<p style="text-align: center;">My <a title="Web Design Firm" href="http://www.thenetimpact.com/webdesign/web_site_design.aspx" target="_blank">web design </a>looks great on every PC,<br />
This has caused quite the jump in visit frequency.<br />
TNI knows great customer experience is all in the details,<br />
This is why I am bringing in the sales!</p>
<p style="text-align: center;"><strong>The <a title="Web design and Internet Marketing Firm" href="http://www.thenetimpact.com/" target="_blank">Net Impact&#8217;s </a>wish is this: may your site bring you gold,<br />
And may all of your holiday wishes end up above the fold!</strong> </p>
<p> </p>
<p style="text-align: center;">
<p style="text-align: center;"><a rel="attachment wp-att-874" href="http://blog.thenetimpact.com/index.php/2009/12/07/seasons-greetings-from-the-net-impact/xmas-sem/"><img title="xmas sem" src="http://blog.thenetimpact.com/wp-content/uploads/xmas-sem-300x185.jpg" alt="xmas sem" width="300" height="180" /></a></p>
<p style="text-align: center;"> </p>
<p style="text-align: center;"><strong>The Net Impact&#8217;s Holiday Gift to You!</strong></p>
<p style="text-align: center;"><em>Interested in learning more about Google Analytics?</em></p>
<p style="text-align: left;">In light of the Holiday Season, <strong>The Net Impact would like to offer 2-hour Google Analytics training sessions for only $99.</strong> Our specialists will train your employees on the Google Analytics system and on how to use the reporting for success. Training sessions can be arranged as webinars or off-site meetings based upon your company&#8217;s needs. <a title="Contact The Net Impact" href="http://www.thenetimpact.com/contact.aspx" target="_blank">Contact The Net Impact </a>to find out more about our training session special and how to take your analytics to the next level!</p>
<p style="text-align: center;">
<p style="text-align: center;">What&#8217;s been going on at The Net Impact? &#8211; Check out our <a title="TNI Newsletter" href="http://www.thenetimpact.com/learning/newsletters/december_2009_seasons_greetings.aspx?utm_source=newsletter&amp;utm_medium=email&amp;utm_campaign=december%2Bnewsletter" target="_blank">December Newsletter </a>to find out!</p>
<p style="text-align: center;"> </p>
<p><span style="color: #ff0000;"><strong> </strong></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.thenetimpact.com/2009/12/seasons-greetings-from-the-net-impact/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  blog.thenetimpact.com/tag/web-design/feed/ ) in 0.46246 seconds, on May 21st, 2012 at 9:11 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 21st, 2012 at 10:11 am UTC -->
