<?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>Concept Splash</title>
	<atom:link href="http://www.conceptsplash.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.conceptsplash.com</link>
	<description>Affordable custom websites</description>
	<lastBuildDate>Thu, 07 Jan 2010 17:09:05 +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>Add icons to headings</title>
		<link>http://www.conceptsplash.com/add-images-to-headings</link>
		<comments>http://www.conceptsplash.com/add-images-to-headings#comments</comments>
		<pubDate>Tue, 22 Dec 2009 17:11:06 +0000</pubDate>
		<dc:creator>ConceptSplash</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.conceptsplash.com/?p=2398</guid>
		<description><![CDATA[In this tutorial we will learn how to add different icons to the left of the same heading tag using HTML and CSS. We&#8217;ll start with a basic demonstration. 
1. Adding one icon to all the headings

The image you choose for background will be used for all the h2 tags. I will keep the h2 [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial we will learn how to add different icons to the left of the same heading tag using HTML and CSS. We&#8217;ll start with a basic demonstration. </p>
<p><strong>1. Adding one icon to all the headings</strong></p>
<p><img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/headings1.jpg" alt="" title="headings1" width="187" height="83" class="alignleft size-full wp-image-2411" /><br />
The image you choose for background will be used for all the h2 tags. I will keep the h2 font simple but you can use more properties to style it differently.  </p>
<p><clear /><br />
<strong>CSS code:</strong></p>
<pre class="brush: css;">h2 {

background: url(images/accept.png) no-repeat;
line-height: 16px;
text-indent: 21px;
font-size: 14pt;
font-weight:bold;

}</pre>
<p><span id="more-2398"></span><br />
<strong>line-height</strong> should be at least the height of your image so it won&#8217;t be trimmed. My icon is 16&#215;16 so my line-height will be 16px. </p>
<p><strong>text-indent</strong> is the space you will need for your icon. Mine is 21px.</p>
<p><strong>HTML code:</strong> (preview in image above)</p>
<pre class="brush: xml;">
&lt;h2&gt;Heading 2 text&lt;/h2&gt;
&lt;h2&gt;Heading 2 text&lt;/h2&gt;
&lt;h2&gt;Heading 2 text&lt;/h2&gt;
</pre>
<p><strong class="margin">2. Adding different icons to the same heading in HTML</strong></p>
<p><img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/headings2.jpg" alt="" title="headings2" width="183" height="82" class="alignleft size-full wp-image-2415" /></p>
<p>Perhaps you want to add a different icon to a heading without setting a new class style. An easy way to do this is to use an inline style in your HTML. Remember that you should avoid mixing styles in HTML but if you must, do it sparsely.<br />
<br />
<clear /></p>
<p><strong>HTML code:</strong></p>
<pre class="brush: xml;">
&lt;h2 style=&quot;background:url(images/house.png) no-repeat&quot;&gt;Home&lt;/h2&gt;

&lt;h2 style=&quot;background:url(images/direction.png) no-repeat&quot;&gt;Directions&lt;/h2&gt;

&lt;h2 style=&quot;background:url(images/delivery.png) no-repeat&quot;&gt;Delivery&lt;/h2&gt;
</pre>
<p><strong class="margin">3. Adding different icons to the same heading using CSS</strong><br />
Perhaps you want to use different icons for groups that share the h2 tag. For this we’ll specify different classnames for the same heading.</p>
<p><img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/headings31.jpg" alt="" title="headings3" width="345" height="84" class="alignnone size-full wp-image-2441" /></p>
<p><strong>CSS code: </strong></p>
<pre class="brush: css;">
h2.smiley {
	background: url(images/smiley.png) no-repeat;
	line-height: 16px;
	text-indent: 21px;
	font-size: 14pt;
}

h2.house {
	background: url(images/house.png) no-repeat;
	line-height: 16px;
	text-indent: 21px;
	font-size: 14pt;
}

h2.delivery {
	background: url(images/delivery.png) no-repeat;
	line-height: 16px;
	text-indent: 21px;
	font-size: 14pt;
}</pre>
<p>In CSS you&#8217;ll specify different classnames (.smiley or .house) for the h2 tag and change the background image for each one. Name your style according to your icon so you won&#8217;t get confused. </p>
<p><strong>HTML code:</strong></p>
<pre class="brush: xml;">
&lt;h2 class=&quot;smiley&quot;&gt;Group 1&lt;/h2&gt;
&lt;h2 class=&quot;smiley&quot;&gt;Group 1&lt;/h2&gt;
&lt;h2 class=&quot;smiley&quot;&gt;Group 1&lt;/h2&gt;

&lt;h2 class=&quot;delivery&quot;&gt;Group 2&lt;/h2&gt;
&lt;h2 class=&quot;delivery&quot;&gt;Group 2&lt;/h2&gt;
&lt;h2 class=&quot;delivery&quot;&gt;Group 2&lt;/h2&gt;

&lt;h2 class=&quot;house&quot;&gt;Group 3&lt;/h2&gt;
&lt;h2 class=&quot;house&quot;&gt;Group 3&lt;/h2&gt;
&lt;h2 class=&quot;house&quot;&gt;Group 3&lt;/h2&gt;
</pre>
<p>In HTML just add the classname you created in your h2 tag (class=&#8221;your class&#8221;). </p>
<p><strong>4. Adding icons to body text and headings without CSS</strong><br />
If you simply just want to add an icon by a text or heading without creating a new property use this:</p>
<pre class="brush: xml;">&lt;img src=&quot;images/house.png&quot; align=&quot;middle&quot; width=&quot;16&quot; height=&quot;16&quot; style=&quot;padding-right:7px&quot; /&gt; Sample text</pre>
<p>and for headings&#8230;</p>
<pre class="brush: xml;">&lt;img src=&quot;images/delivery.png&quot; align=&quot;left&quot; width=&quot;16&quot; height=&quot;16&quot; style=&quot;padding-right:7px&quot; /&gt; &lt;h3&gt;Sample heading&lt;/h3&gt;</pre>
<p>Inline styles:<br />
You can align left or right.  Padding-left defines the space needed for your icon. </p>
<p>Download source files:  <a href="http://www.conceptsplash.com/downloads/iconheadings.rar">iconheadings.rar</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.conceptsplash.com/add-images-to-headings/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Make your website popular for free!</title>
		<link>http://www.conceptsplash.com/how-to-promote-your-website-for-free</link>
		<comments>http://www.conceptsplash.com/how-to-promote-your-website-for-free#comments</comments>
		<pubDate>Sat, 19 Dec 2009 01:12:32 +0000</pubDate>
		<dc:creator>ConceptSplash</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.conceptsplash.com/?p=2226</guid>
		<description><![CDATA[
Spending money to promote your website is effective if you choose the right tools but some of the most powerful solutions are free. Below are some practices that can improve your exposure.
 

Standard Practices

1. Search engine submission
Simply submit your website’s URL to search engines like Google, Yahoo, Ask, etc. The process is easy.
www.freewebsubmission.com offers auto submission to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-2241" title="popular website" src="http://www.conceptsplash.com/wp-content/uploads/2009/12/popular-website.jpg" alt="popular website" width="503" height="231" /></p>
<p>Spending money to promote your website is effective if you choose the right tools but some of the most powerful solutions are free. Below are some practices that can improve your exposure.</p>
<p><strong> </strong></p>
<p><strong></p>
<div id="_mcePaste">Standard Practices</div>
<div></div>
<div id="_mcePaste"><span style="font-weight: normal;">1. Search engine submission</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">Simply submit your website’s URL to search engines like Google, Yahoo, Ask, etc. The process is easy.</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">www.freewebsubmission.com offers auto submission to the highest-rated, free internet Search Engines and Directories.</span></div>
<div><span style="font-weight: normal;"><br />
</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">2. Share interesting content</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">A website&#8217;s rank on search engines is determined by the number of its visitors. If you have many visitors you will have a high rank meaning that your website will appear before others in search engines. In order to generate high traffic you will need to keep your website updated with interesting content. Post articles, tutorials, tips, and anything elese you that will attract people.</span></div>
<div><span style="font-weight: normal;"><br />
</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">3. List your website</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">Potential customers from your area visit online directories like Google Maps Local Business,  Yahoo Local, or YellowPages Directory to find a local business. You can get listed on those directories for free and get noticed.</span></div>
<div><span style="font-weight: normal;"><br />
</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">4. Link Exchange</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">Major search engines like Google and Yahoo measure incoming links to your website so they can determine how relevant you are to search words. Your website’s credibility and rankings become higher if you are linked to popular websites. Try to form affiliations with websites within your category or those that can use your information and provide a link to your website. The easiest way to gain link popularity is to request reciprocal links.</span></div>
<div><span style="font-weight: normal;"><br />
</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">5. Make your website social</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">Encourage interaction on your website by using a blog or forum.  Setting up a social tool can be easy but integration with your website may require professional effort.</span></div>
<div><span style="font-weight: normal;"><br />
</span></div>
<div id="_mcePaste">Innovative Practices</div>
<div><span style="font-weight: normal;"><br />
</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">1. Social networking</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">Online communities like  Facebook, Twitter, and Linkedin are very popular and good for exposure. Sign up on them and post content linking to your website.</span></div>
<div><span style="font-weight: normal;"><br />
</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">2. Partcipate in online communities</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">People share interesting topics on blogs and forums. Participate in these social communities and provide links to your website. (Do not post unsolicited links &#8211; spamming) Join communities on which you can post links relevant to discussions.</span></div>
<div><span style="font-weight: normal;"><br />
</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">3. Use signatures</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">A signature in a forum (or email) is information included at the very bottom of your message. Signatures are great for promoting your website every time you post a message. Some forums get thousands of visits each day. Include a link in your signature and you can bring traffic to your website.</span></div>
<div><span style="font-weight: normal;"><br />
</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">4. Answer questions</span></div>
<div id="_mcePaste"><span style="font-weight: normal;">Yahoo Answers, Answers.com, and Answerbag are websites where people ask questions and other users answer them. Visit those websites, search for questions relevant to your activity and share your knowledge. You can provide a link to your website as a source. People searching for a relevant answer will be appointed to your post.</span></div>
<p></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.conceptsplash.com/how-to-promote-your-website-for-free/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Design a car logo in Photoshop</title>
		<link>http://www.conceptsplash.com/how-to-make-a-car-logo-in-photoshop</link>
		<comments>http://www.conceptsplash.com/how-to-make-a-car-logo-in-photoshop#comments</comments>
		<pubDate>Thu, 10 Dec 2009 19:29:22 +0000</pubDate>
		<dc:creator>ConceptSplash</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.conceptsplash.com/how-to-make-a-car-logo-in-photoshop</guid>
		<description><![CDATA[
In this a step-by-step tutorial I will show you how to design a car logo like the ones above. The instructions are explained in detail so even beginners will understand.  
1. Style the font

Type a name for your car.
For font choose Copperplate Gothic Bold.




Next open the character panel and use these properties: 80% for [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/car_logos3.jpg" alt="" title="car_logos" width="436" height="358" class="alignnone size-full wp-image-2534" /></p>
<p>In this a step-by-step tutorial I will show you how to design a car logo like the ones above. The instructions are explained in detail so even beginners will understand. <img src='http://www.conceptsplash.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>1. Style the font</strong></p>
<p><img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/name1.jpg" alt="" title="" width="198" height="63" class="alignleft size-full wp-image-2465" /><br />
Type a name for your car.<br />
For font choose <strong>Copperplate Gothic Bold</strong>.</p>
<p><clear /></p>
<p><span id="more-2457"></span><br />
<img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/characterpanel.jpg" alt="" title="" width="213" height="213" class="alignright size-full wp-image-2462" /></p>
<p><clear /><br />
Next open the character panel and use these properties: 80% for vertical scale and set the font size to 48 pt. The color you set doesn&#8217;t matter because we will style the font.</p>
<div class="blocked">
Right click on your font layer and select <strong>Blending Options</strong>. A layer style panel will appear. First apply a gradient overlay that will resemble a shinny surface. Set your gradient to the following properties. I used a dark green but you can use different colors, just remember to keep the same dark-light value.</div>
<p><img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/colors.jpg" alt="" title="" width="418" height="99" class="alignnone size-full wp-image-2475" /></p>
<p><strong>Color stops</strong> are the small blocks of color.</p>
<p>Color stop 1: color #797f59, location 24%<br />
Color stop 2: color #3c4025, location 27%<br />
Color stop 3: color: #bec980, location 82%<br />
Color stop 1: color #797f59, location 24%</p>
<p>Next, select <strong>Bevel and Emboss</strong> and set the properties as you see them in the image below.<br />
<img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/bevelemboss1.jpg" alt="" title="" width="585" height="438" class="alignnone size-full wp-image-2486" /><br />
The properties will make the font stand out. </p>
<p>Continue styling the font. Select <strong>stroke</strong> and use,<br />
color: solid white<br />
size: 1px<br />
opacity: 100%. </p>
<p>Next select <strong>outer glow </strong> and use,<br />
color: #999e80<br />
spread: 100%<br />
size: 2px<br />
range: 100%<br />
opacity 100% </p>
<p>And lastly, give it a <strong>drop shadow</strong> with,<br />
blend mode: color burn<br />
color: solid black<br />
angle: 90<br />
distance: 0px<br />
spread 37%<br />
size: 9px<br />
noise: 0%<br />
You won&#8217;t see a shadow under the font yet because <strong>color burn</strong> doesn&#8217;t change on white. </p>
<p>Your font should now look like this.<br />
<img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/textstyled.jpg" alt="" title="" width="198" height="62" class="alignnone size-full wp-image-2491" /></p>
<p><strong>2. Ornaments</strong><br />
The next step is to create some ornaments around the font. I simply used ornament 5 from custom shapes. To find it, click the shape tool in the tool box (or press &#8220;u&#8221;). Hold with your mouse until a drop down list appears. Select <strong>custom shape tool</strong>.</p>
<p>A shape box will appear in the top options bar.<br />
<img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/shapes.jpg" alt="" title="" width="595" height="442" class="alignnone size-full wp-image-2494" /><br />
1. Select <strong>fill pixels</strong> for the shape<br />
2. Click on the shape box. A drop down list with shapes will appear.<br />
3. Click the small arrow on the right. Another drop down list will appear. Select &#8220;ornaments&#8221;<br />
4. Ornament shapes will appear in the list. Choose <strong>ornament 5</strong></p>
<p>Next create a <strong>new layer</strong> and create 1 ornament shape above the font you just styled. Hold down <strong>shift</strong> when expanding your ornament to preserve its original shape. Also make sure that your shape is set to <strong>anti-alias</strong> to be smooth. Select the anti-alias checkbox from the options bar on top. </p>
<p>There are too many color stops for the ornament gradient so please just download the style: <a href="http://www.conceptsplash.com/downloads/ornamentstyle.psd">ornamentstyle.psd</a></p>
<p>After download, open ornamentstyle.psd in Photoshop, right click the single layer and <strong>copy layer style</strong>.</p>
<p>Return to your car logo, right click on the layer that holds your decoration and select <strong>paste layer style</strong>. Your shape should now be styled. </p>
<p><img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/carlogo1.jpg" alt="" title="" width="191" height="130" class="alignnone size-full wp-image-2510" /></p>
<p>Now we need to place another ornament design below the font. Do the following:<br />
1. Duplicate the first layer containing the ornament design to get a second one<br />
2. Select the <strong></strong><strong>Rectangular Marquee Tool</strong> (M)<br />
3. Right-click (with the Marquee Tool selected) on the new ornament<br />
4. Select <strong>Free Transform</strong>. The design will be outlined.<br />
5. Right-click again and select <strong>flip vertical</strong><br />
6. Move the new design below the font </p>
<p>Your design should now look like this,<br />
<img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/carlogo21.jpg" alt="" title="" width="197" height="207" class="alignnone size-full wp-image-2511" /></p>
<p><strong>3. Background Block</strong><br />
The background block will be behind the font. First download the style for it: <a href="http://www.conceptsplash.com/downloads/bkgblock.psd">bkgblock.psd</a> </p>
<p>Open the file, <strong>copy layer style</strong>, and in a new layer (inside you logo design), <strong>paste the layer style</strong>. In the new layer create the shape in the second image below using a rectangle and a <strong>Hexagon Frame</strong> from <strong>custom shapes</strong>. Merge them together in one layer.</p>
<p><img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/shapes1.jpg" alt="" title="" width="377" height="116" class="alignnone size-full wp-image-2515" /><br />
<img src="http://www.conceptsplash.com/wp-content/uploads/2009/12/shapes2.jpg" alt="" title="shapes2" width="220" height="107" class="alignnone size-full wp-image-2513" /></p>
<p>Place the block behind the font and over the decorations. Do this by dragging the layers in the layers panel.</p>
<p><strong>4. Ring</strong><br />
Looking at the design so far it would seem like something is missing. Most car logos have a ring around them. Let&#8217;s create one. </p>
<p>1. Create a new layer and use the same style from the block shape.<br />
2. From custom shapes select the <strong>thin circle frame</strong> shape.<br />
3. Create a ring around the design.<br />
After you insert the ring you should have a finished looking design! <img src='http://www.conceptsplash.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>5. Adjustments</strong><br />
Move things around if necessary. For different styles simply adjust the size of decorations or rings.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.conceptsplash.com/how-to-make-a-car-logo-in-photoshop/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Remove borders from images</title>
		<link>http://www.conceptsplash.com/remove-borders-from-images</link>
		<comments>http://www.conceptsplash.com/remove-borders-from-images#comments</comments>
		<pubDate>Thu, 19 Nov 2009 04:32:24 +0000</pubDate>
		<dc:creator>ConceptSplash</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.conceptsplash.com/?p=2244</guid>
		<description><![CDATA[
Change HTML
We&#8217;ll use the following HTML image code as an example:
&#60;a href=&#34;yourlink.html&#34;&#62;&#60;img src=&#34;image.jpeg&#34;/&#62;&#60;/a&#62;
To remove the border just add&#8230;
border=&#34;0&#34;
&#8230;after the image source like so:
&#60;a href=&#34;yourlink.html&#34;&#62;&#60;img src=&#34;image.jpeg&#34; border=&#34;0&#34;&#62;&#60;/a&#62;
Border 0 is equal to no border.
Add CSS Rule
The most effective way to remove image borders is to add a CSS rule.

Add the following code to remove borders from all [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-2255" title="border images" src="http://www.conceptsplash.com/wp-content/uploads/2009/12/border-images.jpg" alt="border images" width="505" height="175" /></p>
<p><strong>Change HTML</strong><br />
We&#8217;ll use the following HTML image code as an example:</p>
<pre class="brush: xml;">&lt;a href=&quot;yourlink.html&quot;&gt;&lt;img src=&quot;image.jpeg&quot;/&gt;&lt;/a&gt;</pre>
<p>To remove the border just add&#8230;</p>
<pre class="brush: xml;">border=&quot;0&quot;</pre>
<p>&#8230;after the image source like so:</p>
<pre class="brush: xml;">&lt;a href=&quot;yourlink.html&quot;&gt;&lt;img src=&quot;image.jpeg&quot; border=&quot;0&quot;&gt;&lt;/a&gt;</pre>
<p>Border 0 is equal to no border.</p>
<p><strong>Add CSS Rule</strong><br />
The most effective way to remove image borders is to add a CSS rule.</p>
<p><span id="more-2244"></span><br />
Add the following code to remove borders from all your images.</p>
<pre class="brush: css;">img {
   border-style: none;
   }</pre>
<p>Add the following code to remove borders from all your <strong>linked</strong> images.</p>
<pre class="brush: css;">a img {
    border: 0;
    }</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.conceptsplash.com/remove-borders-from-images/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Print Dead?</title>
		<link>http://www.conceptsplash.com/is-print-dead</link>
		<comments>http://www.conceptsplash.com/is-print-dead#comments</comments>
		<pubDate>Wed, 18 Nov 2009 20:04:45 +0000</pubDate>
		<dc:creator>ConceptSplash</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.conceptsplash.com/?p=20</guid>
		<description><![CDATA[Print is declining as more people are shifting to digital media. In 2008-2009, 565 US magazines went out of business. Most were travel, home, and automotive publications. A big part of these magazines were aimed for luxury spending, primarily ceased due to recession but let’s discuss publications affected by digital media. Digital media has the [...]]]></description>
			<content:encoded><![CDATA[<p>Print is declining as more people are shifting to digital media. In 2008-2009, 565 US magazines went out of business. Most were travel, home, and automotive publications. A big part of these magazines were aimed for luxury spending, primarily ceased due to recession but let’s discuss publications affected by digital media. Digital media has the quality of being free and convenient. Print costs money to produce, publish, or read.  Popular titles (like PC Magazine) have been completely digitized for online-reading and more people <img class="alignright size-medium wp-image-21" title="reading-the-newspaper" src="http://www.conceptsplash.com/wp-content/uploads/2009/11/reading-the-newspaper11-254x300.jpg" alt="reading-the-newspaper" width="254" height="300" /> are reading their news online. Digital media isn&#8217;t just for casual reading but also a powerful advertising tool for companies. Buying an ad in a magazine or newspaper can be expensive while on the internet its more affordable or even free.</p>
<p>Another quality of digital media is the convenience at which one can access information. Acquiring information via the internet is much more faster and easier. For example, if you want to order a pizza it’s more convenient to just use the internet to find a close location opposed to… how <strong>do</strong> you do it otherwise?</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">Let’s consider how the usage of the Yellowpages dropped. We all have an outdated publication of that beast in the depths of drawer (used on occasion as a coffee table). The popularity of websites like Google Maps, Yahoo! Local, and Map Quest eliminate the hassle of flipping through directories and making phone calls.<br />
<span id="more-20"></span></p>
<p>Whatever the case of the Yellowpages book may be, the company is still in business because they joined the online trend. You can list your business for free on yellowpages.com or easily find others!</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><strong>People like more results in less time and less effort</strong>. Digital media is definitely more efficient in today’s society.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.conceptsplash.com/is-print-dead/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>About electronic books. The impact of technology.</title>
		<link>http://www.conceptsplash.com/about-electronic-books-the-impact-of-technology</link>
		<comments>http://www.conceptsplash.com/about-electronic-books-the-impact-of-technology#comments</comments>
		<pubDate>Wed, 18 Nov 2009 19:57:10 +0000</pubDate>
		<dc:creator>ConceptSplash</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.conceptsplash.com/?p=9</guid>
		<description><![CDATA[
&#60;— What’s Wrong With This Picture?
The book (produced since the 15th century) doesn’t seem in place with all those new-age gadgets. But should we disfavor the all beloved book? One may argue that not all things can be dismissed; that some things have been around for too long to simply just be replaced. Like how letters could have [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-10" title="technology" src="http://www.conceptsplash.com/wp-content/uploads/2009/11/technology.jpg" alt="technology" width="282" height="298" /></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><strong>&lt;— What’s Wrong With This Picture?</strong></p>
<p>The book (produced since the 15th century) doesn’t seem in place with all those new-age gadgets. But should we disfavor the all beloved book? One may argue that not all things can be dismissed; that some things have been around for too long to simply just be replaced. Like how letters could have “never” been replaced by a better communication method.  New technology changes everything we do and now it has begun to reshape the way we read.  Therefore makes believe that most times we don’t realize changes because we integrate so well with them. This article is about the evolution of books and the rise of their successors, e-books (electronic books). For those of you who don’t know much about them, they’re reading devices with electronic ink displays. The difference between reading something on an e-book and a regular books is very significant.<br />
<span id="more-9"></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">I&#8217;ve read paper books all my life until I heard about Amazon’s Kindle (see in video below) and bought one. Three things make me favor the Kindle: It can carry over 3000 books without losing its portability (obviously), I can check the meaning of any word with an in-built dictionary, and it has FREE wireless internet which I use to buy new books for it or just browse the internet for information. I should also mention that electronic paper doesn’t hurt your eyes because the ink is material <img src='http://www.conceptsplash.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">Below is Amazon’s ad fo their new reading device, the Kindle 2:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/XdpWnmawiBI&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/XdpWnmawiBI&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">And here is a peek into the future of electronic paper. Presently, there is still desire for improvement with e-books.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/oq_2LiTxhls&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/oq_2LiTxhls&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><strong>Will books be replaced by e-books?</strong></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">Yes! Undoubtedly!!! Why the bold answer? Because of these 2 powerful facts:</p>
<ul style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 18px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; list-style-type: square; list-style-position: initial; list-style-image: initial; padding: 0px; border: 0px initial initial;">
<li style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; margin: 0px; border: 0px initial initial;">Paper manufacturing practices are among the largest polluters of air.</li>
<li style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; margin: 0px; border: 0px initial initial;">People like more results in less time and less effort.</li>
</ul>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">The <a href="http://www.lbl.gov/" target="_self">Berkeley National Laboratory</a>, estimated that the average American worker uses 10.000 sheets of copy paper per year. It is estimated that 500,000,000 tons of paper and paperboard are produced per year. Certainly digital publishing can be a big environmental benefit. Reading e-books will reduce pollution caused by paper production and shipping books.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">According to sale estimates, since 2008 more than 2 million people in the U.S. own a kindle reading device (other devices not calculated) Judging from that foothold I can say that E-books will soon appear in more homes and places where there is a demand for efficiency &#8211; for example in schools, replacing old text books like the chalk board was replaced by computer projectors.  Measuring the influence of e-books today I&#8217;m convinced that they will dominate future generations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.conceptsplash.com/about-electronic-books-the-impact-of-technology/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Websites as Marketing Solutions</title>
		<link>http://www.conceptsplash.com/website-as-a-marketing-solution</link>
		<comments>http://www.conceptsplash.com/website-as-a-marketing-solution#comments</comments>
		<pubDate>Wed, 18 Nov 2009 19:54:01 +0000</pubDate>
		<dc:creator>ConceptSplash</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.conceptsplash.com/?p=5</guid>
		<description><![CDATA[Consider these  2 facts:

Information is the most powerful medium for promoting services, products, or activities.
The internet is the most powerful communication tool.

The correlation between them signifies one of today’s of most powerful marketing solution – the website! Not only can a website help you in terms of marketing but also time-efficiency, investment, and credential-wise.
Online Marketing
People nowadays [...]]]></description>
			<content:encoded><![CDATA[<p>Consider these  2 facts:</p>
<ul style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 18px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; list-style-type: square; list-style-position: initial; list-style-image: initial; padding: 0px; border: 0px initial initial;">
<li style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; margin: 0px; border: 0px initial initial;">Information is the most powerful medium for promoting services, products, or activities.</li>
<li style="font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; margin: 0px; border: 0px initial initial;">The internet is the most powerful communication tool.</li>
</ul>
<p>The correlation between them signifies one of today’s of most powerful marketing solution – the website! Not only can a website help you in terms of marketing but also time-efficiency, investment, and credential-wise.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><strong>Online Marketing</strong></p>
<p>People nowadays use the internet as a primary source for gathering, sharing, and inquiring information. Most businesses use their website as a primary source for revenue and promotional tool. Posting ads in print can be expensive and in some cases not as effective as online posting. Statistics show how popular websites are:<br />
<span id="more-5"></span></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><img class="size-full wp-image-7 alignnone" title="InternetUsers" src="http://www.conceptsplash.com/wp-content/uploads/2009/11/InternetUsers.jpg" alt="InternetUsers" width="575" height="442" /></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><strong>Save time with your website!</strong></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">Your website can store all the information you want to share with your clients. If people are interested in services you offer, search engines will appoint them to your website. No need to spend most of your time finding clients, let them find you.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">Another time-efficient feature websites offer are automated payment methods. Paypal and other payment gateways make it easy for you to securely accept and send payments in minutes.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><strong>Low Investment</strong></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">Websites are  like offices (worldwide offices) and can cost little money to make. The larger part of your expenses will go into the design and development. Some websites might cost thousands of dollars to make others just a few hundred and some can go even below that. The actual cost will vary based on the type of website you want and the designers you hire. Keeping your website online is even less expensive &#8211; it&#8217;s extremely affordable!  On average you will pay around 70 dollars per year for hosting and a domain name. Some hostees even offer free hosting! (but not recommended for a business website or one that attracts a lot of visitors). Have you a low budget, many companies like Google can help you promote your website by placing your banner ads on other websites. You can advertise with a low budget but some of the best promotion methods are free &#8211; getting listed in search engines or online directories like YellowPages.</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;"><strong>Credibility</strong></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">It has become a standard for businesses to own a website. Without one you are  practically invisible to most potential clients.  Websites also translate professionalism (or lack of professionalism if you are not careful with the content and look of your Web pages).  Some things that make a website professional and give you credentials can be appealing design elements, a lot of information about your activity, images of your completed projects, testimonials, and automated payments via secure gateways.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.conceptsplash.com/website-as-a-marketing-solution/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can a website help you?</title>
		<link>http://www.conceptsplash.com/how-can-a-website-help-you</link>
		<comments>http://www.conceptsplash.com/how-can-a-website-help-you#comments</comments>
		<pubDate>Wed, 18 Nov 2009 19:47:58 +0000</pubDate>
		<dc:creator>ConceptSplash</dc:creator>
				<category><![CDATA[Articles]]></category>

		<guid isPermaLink="false">http://www.conceptsplash.com/?p=3</guid>
		<description><![CDATA[A website is a powerful tool that can help you reach a wide, diverse range of clients and give you utmost credibility. A website is one of the most powerful (if not the best) marketing solutions. Just in the U.S. about 70% of Americans use the internet. Consider the ease of being discovered without an effort by [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">A website is a powerful tool that can help you reach a wide, diverse range of clients and give you utmost credibility. A website is one of the most powerful (if not the best) marketing solutions. Just in the U.S. about 70% of Americans use the internet. Consider the ease of being discovered without an effort by new clients via your website. </p>
<p>You may be offering great services or products for great prices but in some cases that’s not enough. Before committing to your business, clients need to be convinced of your professionalism. In today’s society <strong>a business without a website can deteriorate.</strong><br />
<span id="more-3"></span>
</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">A website can speed up the way you work. Instead of looking for clients, allow <strong style="font-weight: bold;">them</strong> to find you. People use search engines and online directories like Google Directories or Yellowpages.com to find businesses and you need to be listed on them!</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px; font-weight: inherit; font-style: inherit; font-size: 13px; font-family: inherit; vertical-align: baseline; padding: 0px; border: 0px initial initial;">The next great advantage is the way you <strong style="font-weight: bold;">process payments</strong>.Websites use e-commerce (or) payments gateways which means you can accept payments on your website through automated vendors. You can eliminate the hassle of cashing checks and offer your clients a much easier and faster way to pay you. Below is a video about the popular payment solution, Google Checkout.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/NkdCcTSMHnI&#038;hl=en_US&#038;fs=1&#038;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/NkdCcTSMHnI&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>Another great advantage a website can bring you is <strong style="font-weight: bold;">credibility </strong>which is<strong style="font-weight: bold;"> </strong>important when there&#8217;s competition. A business with a website can present to their clients information in a professional, organized manner. Things like business history, pictures of completed projects, services or pricing listings, secure payment methods, and testimonials improve your credibility. They convince people of your qualities and help them feel comfortable doing business with you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.conceptsplash.com/how-can-a-website-help-you/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
