<?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>Drawlines</title>
	<atom:link href="http://drawlines.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://drawlines.net/blog</link>
	<description>Graphic . Web . Print</description>
	<lastBuildDate>Fri, 16 Mar 2012 20:34:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using CSS Background-size Responsively</title>
		<link>http://drawlines.net/blog/blog/2012/03/16/using-css-background-size-responsively/</link>
		<comments>http://drawlines.net/blog/blog/2012/03/16/using-css-background-size-responsively/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 20:34:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[HTML/CSS]]></category>

		<guid isPermaLink="false">http://drawlines.net/blog/?p=1434</guid>
		<description><![CDATA[If the latter half of 2011 is to be remembered for anything within the web community it will be for the rapid evolution and adoption of responsive web design. Though not the Holy Grail for every mobile web strategy it does correct some of the mistakes the industry made in trying to tame the untameable. ]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">If the latter half of 2011 is to be remembered for anything within the web community it will be for the rapid evolution and adoption of <strong>responsive web design</strong>. Though not the Holy Grail for every <a href="http://www.onextrapixel.com/2012/01/02/design-best-practices-for-the-mobile-web/">mobile web strategy</a> it does correct some of the mistakes the industry made in trying to tame the untameable.</p>
<p><img title="Using Background-size Responsively" src="http://drawlines.net/blog/wp-content/uploads/HLIC/d726508c92b94a92e65c173067ca036d.jpg" alt="Using Background-size Responsively" width="580" height="360" /></p>
<p><span id="more-1434"></span><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9214286339563257";
/* 728x90, created 10/13/10 */
google_ad_slot = "8066565885";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p style="text-align: justify;">Before <a href="http://www.alistapart.com/articles/responsive-web-design/">Ethan Marcotte&#8217;s A List Apart article on Responsive Web Design</a> came along designers revelled in the constraints of the 960 grid; the limitations we imposed on our websites by determining a fixed grid system in an unfixed world gave us a false sense of control over our designs. Responsive design has led many to rethink the assumptions we make when building websites and forcing us to yet again think about the multitude of screens, devices and people that use the web. No longer can we simply increase the width of our websites every few years to what we feel is a size that then covers an acceptable percentage of users.</p>
<p style="text-align: justify;">With responsive design the tried and tested processes we have employed over the years are being rewritten to suit a new and unfamiliar way of building websites. One such process that is being put to the test is our implementation of imagery.</p>
<h2 style="text-align: justify;">Responsive Inline Images</h2>
<p style="text-align: justify;">Images in web design have been easy for years. In the last few years only CSS Sprites like those in use at Google have added something new to the mix. But in <a href="http://www.onextrapixel.com/2011/09/12/create-a-responsive-web-design-template/">responsive web design</a> a whole host of issues have come to the fore as many of the images we use in our designs are not created to suit anything other than the size for which they were created; images aren’t built to be responsive.</p>
<p><img title="Google Sprite" src="http://drawlines.net/blog/wp-content/uploads/HLIC/e7bf8ef23bd4e1d976c3d7feb5d2c2b1.jpg" alt="Google Sprite" width="176" height="340" /></p>
<p style="text-align: justify;">Luckily however inline imagery doesn’t provide all that many issues in a responsive design until you discover an image disappearing off to the right of your mobile screen. In some cases you can learn to avoid or work around certain issues, but this problem required a solution; it came quickly and simply:</p>
<pre title="">img {height:auto; max-width:100%:}</pre>
<p style="text-align: justify;">The solution comes in setting the max-width to ensure that no image appears to overflow the constraints of its parent container and thus, hopefully, the constraints of a small screen device. The height is added to ensure the aspect ratio of the image is retained.<br />
If your image happens to have a border or padding also then the above code needs a little extra something:</p>
<pre title="">img {box-sizing:padding-box; }</pre>
<p style="text-align: justify;">Without setting a value for box-sizing then properties like width and max-width do not accommodate border widths or padding into their measurements. This means the visible width of an image with these properties would be greater than 100% and overflow the constraints of a mobile screen. Adding box-sizing means that where a border and/or padding are specified that all these are included as part of the stated measurement; in this case 100%.</p>
<p><img title="Box Model" src="http://drawlines.net/blog/wp-content/uploads/HLIC/b7b01d892246d3eb460a5685d0a16b5f.jpg" alt="Box Model" width="580" height="360" /></p>
<h4>If Only Background Images Were so Easy</h4>
<p style="text-align: justify;">We use background images for a multitude of purposes ranging from full body backgrounds to icons for links. The latter you wouldn’t expect to be too much of a concern in responsive design and the techniques we use for the former hint at how we can make background images responsive.</p>
<p style="text-align: justify;">When implementing an image in the background of a website we intentionally make this larger to cover as many screen sizes as possible, understanding that those with smaller screens will not see the entire image. It’s this idea that we can use for implementing responsive background images, but first we need to add in another trick to help achieve the right effect; and this is background-size.</p>
<h2 style="text-align: justify;">Background-size 101</h2>
<p style="text-align: justify;">This is one of those new properties gifted to us as part of the CSS3 specification and as is self evident it allows us control over the size of our background image.</p>
<p style="text-align: justify;">The values you can apply to background-size are as follows:</p>
<pre title="">background-size: &lt;bg-size&gt; [ , &lt;bg-size&gt; ]*
&lt;bg-size&gt; = [ &lt;length&gt; | &lt;percentage&gt; | auto ]{1,2} | cover | contain</pre>
<p style="text-align: justify;">Length, percentage and auto should be fairly obvious, but what may not be obvious is that when setting length or percentage values it’s up to the author to ensure the image aspect ratio is maintained, if they so wish.</p>
<p style="text-align: justify;">Cover and contain however are somewhat new and what these do is allow us a way to increase a background image to fill its parent container whilst also retaining the correct image aspect ratio. The differences between the two of these come into how they deal with the overflow. In short using &#8216;cover&#8217; allows for overflow and ‘contain’ does not. This diagram shows better how the same image would appear using either cover or contain:</p>
<p><img title="Cover Contain" src="http://drawlines.net/blog/wp-content/uploads/HLIC/9265bd5fff016efe4dd06aba132005fb.jpg" alt="Cover Contain" width="580" height="360" /></p>
<h2>Using Background-size In Responsive Design</h2>
<p style="text-align: justify;">For responsive web design it’s the ‘cover’ value that contains all the power as it will adjust the size of an image to fill a parent element whilst hiding the excess in the overflow; much like we do with large backgrounds in the body of a website.</p>
<p style="text-align: justify;">These two images show how powerful background-size can be in responsive design:</p>
<p><img title="Background Size 1" src="http://drawlines.net/blog/wp-content/uploads/HLIC/122a472f01f6223bfcccbad714bb21a1.jpg" alt="Background Size 1" width="580" height="360" /><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9214286339563257";
/* 728x90, created 10/13/10 */
google_ad_slot = "8066565885";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<img title="Background Size 2" src="http://drawlines.net/blog/wp-content/uploads/HLIC/22127d0f222d55be5902f7fbc8a2b23f.jpg" alt="Background Size 2" width="580" height="223" /></p>
<p style="text-align: justify;">Both images show the same page, with the same images, the only difference is the size of the browser. It’s the use of background-size and &#8216;cover&#8217; that mean the images are able to adapt to the user screen size and in the case of these images not actually communicate any less information than if the full image was shown.</p>
<p style="text-align: justify;">Much like when making inline images responsive the code is fairly simple:</p>
<pre title="">&lt;ul &gt;&lt;li&gt;&lt;span id="onextrapixel"&gt; Onextrapixel Team&lt;/span&gt;&lt;h3&gt;Onextrapixel Team&lt;/h3&gt;&lt;p&gt;Onextrapixel, or more commonly known as OXP is dedicated to delivering useful, comprehensive and innovative information for designers, developers and many others.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;
.list-img {
background-image:url(/img/onextrapixelteam.jpg);
background-position:50% 50%;
background-repeat:no-repeat;
display:block;
height:140px;
text-indent:-9999px;
-moz-background-size:cover;
-webkit-background-size:cover;
background-size:cover;}

#onextrapixel{
background-image:url(/img/onextrapixelteam.jpg);
}</pre>
<p style="text-align: justify;">In this example a height is also specified for the element; this is because the effect is trying to fake an inline image. This is so that it we can ensure it is responsive without the image’s height becoming excessive at certain breakpoints. Where an element contains something like text or other child elements the height property may not be required but the effect on the image would not differ.</p>
<h4 style="text-align: justify;">What is the Support for Background-size Like?</h4>
<p style="text-align: justify;">Pretty good actually! Nothing older than Internet Explorer 9 knows what it is of course but you have to go back a few versions in all the other browsers to find one that doesn’t support it either with or without vendor prefixes.<br />
But don’t think the lack of IE support is a bad thing. If you serve a fixed design to these browsers then generating a second version of your image would be the best solution. If you’re adding media query support then ensure the image is at the largest it is likely to be viewed at and as the screen size gets smaller the image will just hide into the overflow. You could even swap the image at various breakpoints if necessary.</p>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-9214286339563257";
/* 728x90, created 10/13/10 */
google_ad_slot = "8066565885";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h2>Another String to Your Bow</h2>
<p style="text-align: justify;">Before responsive web design came along website layouts were getting more and more complex, but for the time being responsive design has hit something of a reset button on this as the rich interfaces we were beginning to create are not as easy to achieve using this technique.</p>
<p style="text-align: justify;">But as we learn more about the process and as CSS becomes even more powerful we will become more familiar with the limits and opportunities of responsive design. As this happens we will be able to design richer interfaces for our responsive websites while also allowing us to enrich the user experience for all our users.</p>
]]></content:encoded>
			<wfw:commentRss>http://drawlines.net/blog/blog/2012/03/16/using-css-background-size-responsively/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pin It The Difference Between Print and Web Design</title>
		<link>http://drawlines.net/blog/blog/2012/03/16/pin-it-the-difference-between-print-and-web-design/</link>
		<comments>http://drawlines.net/blog/blog/2012/03/16/pin-it-the-difference-between-print-and-web-design/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 20:30:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://drawlines.net/blog/?p=1432</guid>
		<description><![CDATA[Both Print and Web Design are powerful mediums that have the power to pack a lot of impact and persuade the viewer to take action. If you’re looking to cross over into web design, or vice versa, it can be beneficial for you to understand the inherent differences that exist in each medium. And while ]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript">// < ![CDATA[
  google_ad_client = "ca-pub-9214286339563257"; /* 728x90, created 10/13/10 */ google_ad_slot = "8066565885"; google_ad_width = 728; google_ad_height = 90;
// ]]&gt;</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// < ![CDATA[</p>
<p>// ]]&gt;</script></p>
<p style="text-align: justify;">Both <strong>Print and Web Design</strong> are powerful mediums that have the power to pack a lot of impact and persuade the viewer to take action. If you’re looking to cross over into web design, or vice versa, it can be beneficial for you to understand the inherent differences that exist in each medium. And while these fundamental differences exist, each has made huge strides in working around their respective nuances to enhance the viewer experience.</p>
<p style="text-align: justify;">This article seeks to uncover the differences <em>(and similarities)</em>, and how both print and web design has advanced in acknowledging these disparities.</p>
<p><img title="The Difference Between Print and Web Design" src="http://drawlines.net/blog/wp-content/uploads/HLIC/93e4ac105b5002ce5a8353a09f96ff12.jpg" alt="The Difference Between Print and Web Design" width="580" height="360" /></p>
<p><span id="more-1432"></span></p>
<p>&nbsp;</p>
<h2>A Different Experience</h2>
<p style="text-align: justify;">It can be said that the experience of viewing and interacting with a website is entirely different than reading a full page spread in a newspaper. The experience of viewing a print publication is one of cohesion – where your eyes are guided from page to page with subtle variation throughout to keep interest.</p>
<p style="text-align: justify;">The design is created for a fixed canvas size – which can be substantial when we’re talking about newspapers or posters. While on the web, the user interacts through a scrolling experience as opposed to a canvas experience. Throughout the reading experience, users will scroll even before all elements have rendered and to varying degrees.</p>
<h4 style="text-align: justify;">In Summary:</h4>
<ul>
<li style="text-align: justify;">Print Design allows your eyes to walk around the information, letting you select information objects and using spatial juxtaposition to enhance and explain page elements.</li>
<li style="text-align: justify;">Web Design is a transient experience based on the users movements <em>(clicking and scrolling)</em> and is expressed through an interaction with user movement.</li>
</ul>
<p><img title="Newspaper Design" src="http://drawlines.net/blog/wp-content/uploads/HLIC/416ca79b08775e34d451c82eea652222.jpg" alt="Newspaper Design" width="580" height="322" /><br />
<em>Image credit: <a href="http://www.flickr.com/photos/wcouch/101341897/in/pool-69578759@N00/">william couch</a></em></p>
<h2>Canvas vs. Screen</h2>
<p style="text-align: justify;">Two things both mediums have in common is they both take into account the audience and demographic of the end user. A print designer can rely on fonts, colors, paper stock, and other elements to effectively reach his or her designated audience, and a web designer can do the same to a greater extent. However, nothing is more different between the two than the constraints of designing for the web itself.</p>
<p style="text-align: justify;">Computer monitors come in different sizes and users can re-size their browser windows according to their own needs. Also, monitor color and contrast settings can affect how colors are rendered on their screen. Finally, the differences between browsers and operating systems mean web designers are tasked with troubleshooting for a myriad of situations. Not as glamorous as the print designer who is making the switch over to web may have expected.</p>
<p style="text-align: justify;">Although these issues exist, many web designers have embraced this as the norm and have learned to work around it. A lot of these issues can be addressed by analyzing your target audience: Are they likely to have nice new computers with the newest browsers and a complete set of plug-ins?</p>
<h4 style="text-align: justify;">Are web designers restricted to their creativity by the capabilities of web technology, like HTML5, CSS3, JavaScript etc?</h4>
<p style="text-align: justify;"><a href="http://www.krishnasolanki.co.uk/">Krishna Solanki, Web &amp; Graphic Designer</a>: Personally I believe it is down to the web designer really. I mean, if they are able and happy to code their designs to degrade gracefully across the different browsers then I would presume they would take on board the ever-evolving technologies, and thus they may become less of a restriction as they may have an idea of development whilst designing and can use their creative skills wisely. All depends on if the web designer is also the developer, in my opinion.</p>
<p style="text-align: justify;"><a href="http://www.snoackstudios.com/">Shannon Noack, Web Designer</a>: I don&#8217;t think a web designer&#8217;s creativity is restricted online, it&#8217;s just a matter of learning to work with the limitations that are out there. A print designer is also restricted, by paper type, size, printer quality, etc. So any designer faces some sort of restriction, but it&#8217;s important to use your creativity to rise above these things, and work with them to come out with an awesome design.</p>
<p style="text-align: justify;"><a href="http://www.davidairey.com/">David Airey, Designer</a>: I don&#8217;t think it&#8217;s as much a restriction as it is just a different canvas you&#8217;re working with. Every medium has its constraints. If you&#8217;re working in print you have to decide what you&#8217;re printing on and how many colors you use. You&#8217;re going to pay more for bleeds or die cuts. You&#8217;re also restricted by physical space, you can&#8217;t scroll in print and every additional page you add costs money.</p>
<p><script type="text/javascript">// < ![CDATA[
 google_ad_client = "ca-pub-9214286339563257"; /* 728x90, created 10/13/10 */ google_ad_slot = "8066565885"; google_ad_width = 728; google_ad_height = 90;
// ]]&gt;</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// < ![CDATA[</p>
<p>// ]]&gt;</script></p>
<p style="text-align: justify;"><a href="http://www.colbowdesign.com/">Brad Colbow, Web Designer</a>: Great design is born from within the restrictions that you are given. Shepard Fairey&#8217;s poster of Barack Obama is a good example of design that embraces the restrictions of its medium. It was a screen printed poster so the artists used solid colors that would print well. When I see a website like <a href="http://www.zaarly.com/">Zaarly</a> I not only see a beautiful design but a design that can only have been created on the web. Visually you could use the elements in print but you could never recreate the way the content interfaces with the design.</p>
<p style="text-align: justify;"><a href="http://www.davidairey.com/">David Airey, Designer</a>: I think both fields have restrictions. For instance, print design is restricted to a smaller colour gamut.</p>
<p style="text-align: justify;"><a href="http://www.mayhemstudios.com/">Calvin Lee, Designer</a>: I would start with the design first, be as creative as you want like any other print project. Then worry about how to build it later. I also have to say, you should know a little about how all the web technologies work; HTML, CSS, JavaScript, etc. when designing a website. You don&#8217;t necessarily have to know how to build everything. As long as you know what the limitations are.</p>
<h4 style="text-align: justify;">What are the challenges faced by the Print/Graphic Designer when asked to transition towards the Web?</h4>
<p style="text-align: justify;"><a href="http://www.snoackstudios.com/">Shannon Noack, Web Designer</a>: There are a bunch of differences between print and the web, and many designers struggle with these differences and how to accommodate for them. Type restrictions are a big one and it takes some time to learn how to work with the options out there. Things are getting more flexible with typography options online but it&#8217;s important to learn the limitations and what you can do with them. Things like shadows, gradients, rounded corners, and all those extra touches are also important to learn about.</p>
<p style="text-align: justify;"><a href="http://www.blog.spoongraphics.co.uk/">Chris Spooner, Designer</a>: The main challenge has to be learning the basics of how to design for the web. Websites are viewed in a range of different applications and on many different devices. A print designer can expect their design to look exactly how they planned, but a web designer has to make sure their work is suitable for a various computing setups.</p>
<p style="text-align: justify;"><a href="http://www.krishnasolanki.co.uk/">Krishna Solanki, Web &amp; Graphic Designer</a>: As I started off as primarily a web designer and then moved into Print, it is slightly different. I would say to be mindful of the &#8220;terms&#8221; and dimensions used in the web design world and the print world, I.E, moving from inches to pixels. Also to be considerate of the fact there is no bleed or crop for the web.</p>
<p style="text-align: justify;"><a href="http://cameronchapman.com/">Cameron Chapman, Designer</a>: I got my start mostly in print design, and one of the biggest challenges when I started doing more web design was changing the way I thought about designs. Print designs (at least the kinds I was doing) exist in a very finite form, while web design is much more flexible. The web can evolve constantly, whereas once a print design has been printed, it&#8217;s &#8220;finished&#8221;. That takes some getting used to.</p>
<p style="text-align: justify;"><a href="http://www.colbowdesign.com/">Brad Colbow, Web Designer</a>: In print design you have a fixed canvas size. On the web you don&#8217;t. For years we debated what width we should design sites at. Should they be 800 pixels wide? 960 pixels? As mobile has become more and more important designers have become even more conscious of the web&#8217;s flexibility. Designing for the web is now about embracing that flexibility and the unknown of screen size. This isn&#8217;t a new idea, <a href="http://www.alistapart.com/articles/dao/">John Alsop</a> was writing about it over 10 years ago but the growth of mobile phones and tables have made us much more aware of it recently. That&#8217;s a big part of why we see so much about responsive web design (flexible layouts that use media queries to adjust to different screen sizes) nowadays.</p>
<p style="text-align: justify;"><a href="http://www.davidairey.com/">David Airey, Designer</a>: Learning code. It&#8217;s basically putting the time in. A lot of the same principles apply online and off, with layout and typography being two of the most important.</p>
<p style="text-align: justify;"><a href="http://www.mayhemstudios.com/index.html">Calvin Lee, Designer</a>: The biggest challenge for any printer designer, is taking a printed piece and making it look the same/similar for the web. It took me awhile and very frustrating, to wrap my head around using HTML and CSS to layout/move items around on the page. It&#8217;s very easy with a layout program like Quark or Indesign. Layout for the web was a huge problem, if you don&#8217;t know anything about coding. Sure you can use a wysiwyg app like Dreamweaver but it tends to add unnecessary junk code. Also the differences in the color modes for print and web can be frustrating too. You can come close. For web, colors will tend to be brighter.</p>
<h4 style="text-align: justify;">Navigation</h4>
<p style="text-align: justify;">You’re probably so familiar with flipping through your favorite magazine that you haven’t even considered a navigation element, but this is how we get around a print design &#8211; by turning pages. Conversely, the web is all about moving around. The navigation of a website is a major component to its readability. Decisions like the appearance of links, visualization of where they currently are, and information architecture play an important role in navigating a website successfully.</p>
<p><img title="Navigation" src="http://drawlines.net/blog/wp-content/uploads/HLIC/7a6f1514c3b6a12dad4568c95b7a69f4.jpg" alt="Navigation" width="580" height="250" /><br />
<em>Image credit: <a href="http://www.flickr.com/photos/laurajo/3230483467/">laurajo</a></em></p>
<h4>Typography</h4>
<p style="text-align: justify;">One of the joys about designing for print is the wide array of fonts available at your disposable to communicate your message. The proliferation of free font sites has meant you can achieve custom graphic communications without relying on the fonts issued on your computer and without purchasing ones from type foundries.</p>
<p><img title="Typography" src="http://drawlines.net/blog/wp-content/uploads/HLIC/d361a0c911c112c7339c40d5517db1b0.jpg" alt="Typography" width="580" height="144" /></p>
<p style="text-align: justify;">Changes in typography on the web also are abundant. Ten years ago web designers thought they were restricted to the fonts available on the users computers and that’s it. This issue was tackled in 2009 with the introduction of Typekit, one of the first web font services. Many other services are available to remedy the typography constraints inherent on the web.</p>
<p style="text-align: justify;">However, it’s still important to use fonts that are optimized for on-screen readability. The two popular ones, Georgia and Verdana, are always great options to fall back on as they were designed for on-screen use. Font size is also critical: while most print publications can get away with using 10- or 11-point type, the web demands font sizes of 12- or even 14-point to make articles reader-friendly.</p>
<p style="text-align: justify;">Web Safe fonts are also something to fall back on, as they have been shown to ensure maximum compatibility between browsers/operating systems. These are fonts that you can expect everyone viewing your webpage to have. If the browser does not support the first font, it tries the next font. Examples of web safe fonts include Arial, Georgia, Gill Sans, Times New Roman, and Palatino Linotype, to name a few.</p>
<p style="text-align: justify;">The use of CSS3 also means you can achieve unique and compelling effects not only in typography but in the design of the site in it’s entirety through the use of drop shadows, gradients, borders, etc.</p>
<h4>Images</h4>
<p style="text-align: justify;">There’s a drastic difference between the way an image appears on screen and the way it appears in print. With online publishing, there’s more room for error versus print. The differences exist in the following:</p>
<p><a href="http://graystone-inc.com/">Graystone</a><br />
<a href="http://graystone-inc.com/"><img title="Graystone" src="http://drawlines.net/blog/wp-content/uploads/HLIC/938713d9ac3dfbf8bbf0e5c376921807.jpg" alt="Graystone" width="580" height="343" /></a></p>
<h4>CMYK vs. RGB</h4>
<p style="text-align: justify;">CMYK stands for Cyan, Magenta, Yellow and Key (Key being whatever ink color makes black on the paper color you’re using — usually just black itself) and is the standard color space for printed material. Using these four ink colors in different screens, you can produce virtually any color in print. RBG, on the other hand, stands for Red, Green and Blue and is what every computer monitor, television and other digital equipment uses to produce color.</p>
<h4 style="text-align: justify;">Image Compression</h4>
<p style="text-align: justify;">Your image will need to be 72dpi for the web. It’s also recommended to use JPEG (set to “high” quality, usually level 8 or 9) or PNG format for your image files. PNG offers a number of advantages to GIF, particularly when it comes to options for transparency and true-color palettes.</p>
<h4>Interactivity</h4>
<p style="text-align: justify;">An abundance of tools exist for the web that aren’t readily available for print. With a web site, you can have animation, mouse-over effects, pull down menus, cross-referencing links, instant reader feedback, and on and on. The key is to know when and how to use them. Keep not only your target audience in mind when incorporating interactive elements onto websites, but the browsers and operating systems they use.</p>
<p><a href="http://www.atticuspetdesign.com/">Atticuspet</a><br />
<a href="http://www.atticuspetdesign.com/"><img title="Atticuspet" src="http://drawlines.net/blog/wp-content/uploads/HLIC/1f7a92e69f1bf6cc793416329b670eba.jpg" alt="Atticuspet" width="580" height="343" /></a></p>
<h4>Similarities</h4>
<p style="text-align: justify;">Despite the end result the user encounters when interacting with both mediums, there are similarities between the two. For one, both employ similar uses of data presentation, such as the heavy use of white space in easing the visual impact on the reader. The second similarity is that of grid-based designs. Since both rely on a heavy amount of information, structuring this information is paramount as it guides the user’s eye while providing order.</p>
<p><strong>Grid Resources:</strong></p>
<ul>
<li><a href="http://www.thegridsystem.org/">The Grid System</a></li>
<li><a href="http://960.gs/">960.gs</a></li>
</ul>
<h2>Is it possible to master both?</h2>
<p style="text-align: justify;"><a href="http://www.cameronchapman.com/">Cameron Chapman, Designer</a>: I think it&#8217;s a good idea to at least be proficient in both. Print isn&#8217;t going to die completely any time soon, though parts of it have definitely been replaced to an extent by the web. Being able to create both awesome print designs and awesome web designs is definitely going to put you ahead of a lot of your competition.</p>
<p style="text-align: justify;"><a href="http://www.blog.spoongraphics.co.uk/">Chris Spooner, Designer</a>: It&#8217;s important as a designer to stay on top of the industry changes and keep your skillset up to date with the latest coding languages and technologies. It&#8217;s too easy to fall behind as a web designer, which is why I keep myself informed by socialising with like minded people over Twitter and subscribing to informative websites and blogs.</p>
<p style="text-align: justify;"><a href="http://www.snoackstudios.com/">Shannon Noack, Web Designer</a>: I think you can definitely master both print and web design, you just need to understand that they are different and design for the medium that you&#8217;re working with. Both have their own limitations and best practices so it&#8217;s best to focus on the task at hand and use the program and tools that are best for that project. As a print and web designer myself, I know that you can do both, you just can&#8217;t do both the same way. Design skills and creativity cross over, as well as any design principles, but even the best fonts to use are different so it&#8217;s important to keep them separate and distinct.</p>
<p style="text-align: justify;"><a href="http://www.colbowdesign.com/">Brad Colbow, Web Designer</a>: It would be hard to really master both but it would be possible. Honestly it&#8217;s really hard to master both the visual design part of web design and also front end development, that&#8217;s why so many places break those up into two different jobs. I feel far more competent in Photoshop that I do writing HTML/CSS. I learned the latter to improve the former.</p>
<p style="text-align: justify;">For anyone who is working in print design and wants to jump in and learn more about HTML and CSS you should check out <a href="http://cssforprintdesigners.com/">JD Graffam&#8217;s book</a>. He does an excellent job of pointing out the similarities and differences between print and the web.</p>
<p><a href="http://www.davidairey.com/">David Airey, Designer</a>: Why not?</p>
<p style="text-align: justify;"><a href="http://www.mayhemstudios.com/">Calvin Lee, Designer</a>: I think it&#8217;s very possible to master both print and web. It gives you an advantage over other designers and you get paid more. With that said, many designers can&#8217;t or don&#8217;t want to code. They would contract it out to developers and coders. That is very legit.</p>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-9214286339563257";
/* 728x90, created 10/13/10 */
google_ad_slot = "8066565885";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h2>Showcases</h2>
<p><a href="http://www.book-of-numbers.com/">Book Of Numbers</a><br />
It looks like a book. It navigates like a book. Is it a book?</p>
<p><a href="http://www.book-of-numbers.com/"><img title="Book of numbers" src="http://drawlines.net/blog/wp-content/uploads/HLIC/fd6c5c3bff960a678c2fe91a216cb5b2.jpg" alt="Book of numbers" width="580" height="322" /></a></p>
<p><a href="http://www.nytimes.com/">The New York Times</a><br />
Designed to resemble the famed newspaper layout of the NY Times newspaper.</p>
<p><a href="http://www.nytimes.com/"><img title="New York Times" src="http://drawlines.net/blog/wp-content/uploads/HLIC/9b96785be7d2b4cb54218df63c55e8b2.jpg" alt="New York Times" width="580" height="322" /></a></p>
<p><a href="http://csstinderbox.raykonline.com/">CSS Tinderbox</a><br />
With grungy/paper-like textures, this site looks like a propaganda leaflet.</p>
<p><a href="http://csstinderbox.raykonline.com/"><img title="CSS Tinderbox" src="http://drawlines.net/blog/wp-content/uploads/HLIC/f6389bcabe99e3c08a48819a0cb07721.jpg" alt="CSS Tinderbox" width="580" height="322" /></a></p>
<p><a href="http://www.netlashproject.be/">Netlash-bSeen</a><br />
Website that resembles a poster.</p>
<p><a href="http://www.netlashproject.be/"><img title="Netlash" src="http://drawlines.net/blog/wp-content/uploads/HLIC/8f69afcd2aa35dc0f1900af8b3f9535b.jpg" alt="Netlash" width="580" height="322" /></a></p>
<p><a href="http://www.dollardreadful.com/">The Dollar Dreadful</a><br />
Website that resembles a newspaper.</p>
<p><a href="http://www.dollardreadful.com/"><img title="The Dollar Dreadful" src="http://drawlines.net/blog/wp-content/uploads/HLIC/782ad5ac50d34d90f4c1c346e10c58a6.jpg" alt="The Dollar Dreadful" width="580" height="322" /></a></p>
<p><a href="http://lostworldsfairs.com/atlantis/">Atlantis</a><br />
Website that resembles a poster.</p>
<p><a href="http://lostworldsfairs.com/atlantis/"><img title="Atlantis" src="http://drawlines.net/blog/wp-content/uploads/HLIC/83ca77ca3053fa3f6004c1c1f98dd74a.jpg" alt="Atlantis" width="580" height="322" /></a></p>
<p><a href="http://lostworldsfairs.com/moon/">The Moon</a><br />
Website that resembles a poster.</p>
<p><a href="http://lostworldsfairs.com/moon/"><img title="The Moon" src="http://drawlines.net/blog/wp-content/uploads/HLIC/5c78abe66290dfdc19827e91d6462ccd.jpg" alt="The Moon" width="580" height="322" /></a></p>
<p><a href="http://www.wired.com/">Wired</a><br />
Website that resembles a magazine.</p>
<p><a href="http://www.wired.com/"><img title="Wired" src="http://drawlines.net/blog/wp-content/uploads/HLIC/a4abc98a2c4465ec64ce3dad91bcc748.jpg" alt="Wired" width="580" height="322" /></a></p>
<p><a href="http://www.thesunmagazine.org/">Sun Magazine</a><br />
Website that resembles a magazine.</p>
<p><a href="http://www.thesunmagazine.org/"><img title="Sun Magazine" src="http://drawlines.net/blog/wp-content/uploads/HLIC/a99399a3b3f3d2e0afcbed3289401a9f.jpg" alt="Sun Magazine" width="580" height="322" /></a></p>
<h2>Conclusion</h2>
<p style="text-align: justify;">Designing for web and print are two entirely different experiences. If your background is in print, it doesn’t mean you have to neglect basic print principles and styles. The great thing about the modern web is it’s starting to imitate print in some respects. E-commerce, blogs, news and political websites are especially popular amongst the print crowd. Understanding the limitations of each will be a step towards creating a more unified experience for both mediums.</p>
<p><strong>What do you feel is the biggest difference between print and web design?</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://drawlines.net/blog/blog/2012/03/16/pin-it-the-difference-between-print-and-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 Simple &amp; Effective jQuery Plugins that Enhance Your Forms</title>
		<link>http://drawlines.net/blog/blog/2012/03/16/15-simple-effective-jquery-plugins-that-enhance-your-forms/</link>
		<comments>http://drawlines.net/blog/blog/2012/03/16/15-simple-effective-jquery-plugins-that-enhance-your-forms/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 19:44:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://drawlines.net/blog/?p=1430</guid>
		<description><![CDATA[We all know the importance of having a nice form for our website, but it will make you stand out from crowd when you have a stylish and effective form on board. Though there are many jQuery plugins available, we found a few simple and effective plugins which might help you in your design. Here ]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">We all know the importance of having a nice form for our website, but it will make you stand out from crowd when you have a<strong> stylish and effective form</strong> on board. Though there are many jQuery plugins available, we found a few simple and <strong>effective plugins</strong> which might help you in your design. Here are 15 plugins we selected for this round up.</p>
<p><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/19c7ed98433c78a691169dcea3bac421.jpg" alt="Simple &amp; Effective jQuery Plugins that Enhance Your Forms" width="580" height="360" /></p>
<p><span id="more-1430"></span><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9214286339563257";
/* 728x90, created 10/13/10 */
google_ad_slot = "8066565885";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h2>Simple &amp; Effective jQuery Plugins that Enhance Your Forms</h2>
<p style="text-align: justify;"><a title="Fancy Contact Form" href="http://tutorialzine.com/2009/09/fancy-contact-form/">Fancy Contact Form</a><br />
Providing a simple and reliable means of feedback from site visitors is a crucial part of any web presence. The most simple and common feedback channels are contact forms.</p>
<p><a href="http://tutorialzine.com/2009/09/fancy-contact-form/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/ae1231d2cf1eb7ac973b149b7e40278d.jpg" alt="Fancy Contact Form" width="580" height="445" /></a></p>
<p style="text-align: justify;"><a title="Create a Neon Blink Effect For your Forms" href="http://www.1stwebdesigner.com/tutorials/neon-blink-effect-forms-css3-jquery/">Create a Neon Blink Effect For your Forms Using CSS3 And jQuery</a><br />
How cool would it be to have a glowing blink effect behind your input boxes in a form without using Flash? Well thanks to the bright new kid on the block, CSS3, spruced up with a bit of jQuery, you can! This tutorial will show you how to build a nifty effect to enhance your forms.</p>
<p><a href="http://www.1stwebdesigner.com/tutorials/neon-blink-effect-forms-css3-jquery/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/57b6d4fa1f18b5a62d4ce00315e47712.jpg" alt="Create a Neon Blink Effect for your Forms" width="580" height="787" /></a></p>
<p style="text-align: justify;"><a title="Table-Sorter Plug-in" href="http://www.scriptiny.com/2009/11/advanced-javascript-table-sorter/">Table-Sorter Plug-in</a><br />
The third iteration of the Tiny Table sorting script adds search, column averages and totals, record numbering, a view all function, and a reset function. At only 6KB it is still lightweight, quick, and includes all previous Tiny Table features.</p>
<p><a href="http://www.scriptiny.com/2009/11/advanced-javascript-table-sorter/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/b9d9079a33b90f993a3ab05fbb14d471.jpg" alt="Table Sorter Plug-in" width="580" height="252" /></a></p>
<p><a title="Complete Transactions Form" href="http://js.recurly.com/">Complete Transactions Form</a><br />
Secure, PCI Compliant Transaction Forms With Fully Customizable CSS.</p>
<p><a href="http://js.recurly.com/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/1ed32f537d2bc12a994dabc2df8925ab.jpg" alt="Complete Transactions Form" width="580" height="160" /></a></p>
<p style="text-align: justify;"><a title="Design a Registration Form" href="http://youhack.me/2010/03/30/designing-a-form-using-pure-css-enhanced-with-jquery/">Design a Registration Form</a><br />
Web Forms are a fundamental part of web design. From small login forms to complex administration panels, forms are probably the most important interactive elements in a web application. Some people prefer to design forms using a table whereas some prefer a table-less design using pure CSS .In this tutorial I have created a form using pure CSS and I have skinned the form elements such as textbox, drop down list ,radio button using a jQuery plugin.</p>
<p><a href="http://youhack.me/2010/03/30/designing-a-form-using-pure-css-enhanced-with-jquery/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/438414928691f7c053f79b4086ba7c17.jpg" alt="Design a Registration Form" width="580" height="391" /></a></p>
<p><a title="Jq Transform Plug-in" href="http://www.dfc-e.com/metiers/multimedia/opensource/jqtransform/">Jq Transform Plug in</a><br />
This plugin is a jQuery styling plugin which allows you to skin form elements.</p>
<p><a href="http://www.dfc-e.com/metiers/multimedia/opensource/jqtransform/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/174b6e9f44cdf4e7655a7bb561a71045.jpg" alt="Jq Transform Plug-in" width="580" height="648" /></a></p>
<p style="text-align: justify;"><a title="Pretty Check List" href="http://www.no-margin-for-errors.com/projects/prettyCheckboxes/">Pretty Check List</a><br />
This script is for people who want to have a consistent look for checkboxes across browsers, or those who simply want them to look better. By using this script you won’t lose any of the regular input usability.</p>
<p><a href="http://www.no-margin-for-errors.com/projects/prettyCheckboxes/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/50752141a21ec890d906e86adb472818.jpg" alt="Pretty Check List" width="580" height="730" /></a></p>
<p style="text-align: justify;"><a title="Create a Progress Bar with JavaScript" href="http://net.tutsplus.com/tutorials/javascript-ajax/create-a-progress-bar-with-javascript/">Create a progress Bar With JavaScript</a><br />
The Progress Bar is one of the latest components to be added to the excellent library of UI widgets and interaction helpers built on top of jQuery. It was introduced in the latest version of the library, which at the time of writing is 1.7.</p>
<p><a href="http://net.tutsplus.com/tutorials/javascript-ajax/create-a-progress-bar-with-javascript/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/c9722d154d4ed90cffc968373997a451.jpg" alt="Create a Progress Bar with JavaScript" width="580" height="587" /></a><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9214286339563257";
/* 728x90, created 10/13/10 */
google_ad_slot = "8066565885";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p style="text-align: justify;"><a title="jQuery Credit Card Validation Plug-in" href="http://www.egrappler.com/jquery-credit-card-validation-plugin-smart-validate/">jQuery Credit Card Validation Plug in</a><br />
Smart Validate is a jQuery credit card validation plug-in, that makes credit card format validation a simple task. It ensures that the user has entered a valid credit card number before making the actual transaction.</p>
<p><a href="http://www.egrappler.com/jquery-credit-card-validation-plugin-smart-validate/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/81a53f4665f72a5574dfd64033122d26.jpg" alt="jQuery Credit Card Validation Plug-in" width="580" height="319" /></a></p>
<p style="text-align: justify;"><a title="jQuery Auto Tab Plug-in" href="http://www.mathachew.com/sandbox/jquery-autotab/">jQuery Auto Tab Plugin</a><br />
Auto Tab is a jQuery plugin that provides auto-tabbing and filtering on text fields in a form. Once the maximum number of characters has been reached within defined text fields, the focus is automatically set to the defined target of the element.</p>
<p><a href="http://www.mathachew.com/sandbox/jquery-autotab/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/3d9728a91516c680f603d4a9f57796a7.jpg" alt="jQuery Auto Tab Plug-in" width="580" height="520" /></a></p>
<p style="text-align: justify;"><a title="jQuery Highlight Plug-in" href="http://www.keyframesandcode.com/code/development/javascript/jquery-highlight-plugin/">jQuery Highlight Plug in</a><br />
Its primary use is for forms, but it can also be used for tables, lists, or any element you specify. It can also be used to toggle elements on and off, for example, table rows.</p>
<p><a href="http://www.keyframesandcode.com/code/development/javascript/jquery-highlight-plugin/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/4914283cc22ab4ac52bba6013fad1378.jpg" alt="jQuery Highlight Plug-in" width="580" height="227" /></a></p>
<p style="text-align: justify;"><a title="Gmail Like Client side Drafts and a Bit More" href="http://simsalabim.github.com/sisyphus/">Gmail-Like Client side Drafts and a Bit More</a><br />
Here you may fill forms in the normal way, then close your tab/browser, refresh window or open this page in a new tab to see all your changes are saved and restored.</p>
<p><a href="http://simsalabim.github.com/sisyphus/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/2012986f48fde430274e9d79cfd9e5fd.jpg" alt="Gmail-Like Client side Drafts and a Bit More" width="580" height="616" /></a></p>
<p style="text-align: justify;"><a title="jQuery Plotting Plug-in" href="http://www.jqplot.com/">jQuery Plotting Plug in</a><br />
JqPlot is a plotting and charting plugin for the jQuery JavaScript framework. jqPlot produces beautiful line, bar and pie charts.</p>
<p><a href="http://www.jqplot.com/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/12e3f85bfd71004b3a09575ea3c7e80e.jpg" alt="jQuery Plotting Plug-in" width="580" height="378" /></a></p>
<p><a title="Date Picker" href="http://www.eyecon.ro/datepicker/">Date Picker</a><br />
Date Picker is a component with a lot of options and easy to fit into your web application.<br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9214286339563257";
/* 728x90, created 10/13/10 */
google_ad_slot = "8066565885";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<a href="http://www.eyecon.ro/datepicker/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/1e8d4f88ecb7b0ae73966613e8b63e99.jpg" alt="Date Picker" width="580" height="144" /></a></p>
<p style="text-align: justify;"><a title="Create a jQuery UI Form" href="http://www.tuttoaster.com/enhancing-forms-using-jquery-ui/">Create a jQuery UI Form</a><br />
UI is an important factor while developing any web application or website. jQuery UI is a powerful UI framework which supplies almost all standard widgets like tabs, accordions, sliders etc.</p>
<p><a href="http://www.tuttoaster.com/enhancing-forms-using-jquery-ui/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/db9b6bb0224955858068491b8f462fde.jpg" alt="Create a jQuery UI Form" width="580" height="262" /></a></p>
<h2>Conclusion</h2>
<p style="text-align: justify;">Do you use any of these plugins to style contact forms in your designs? Have you come across any other great jQuery plugins that we have missed from this list?</p>
<p style="text-align: justify;">Please share your links and comments with us in the section below.</p>
]]></content:encoded>
			<wfw:commentRss>http://drawlines.net/blog/blog/2012/03/16/15-simple-effective-jquery-plugins-that-enhance-your-forms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>50 Beautiful Photos on Instagram</title>
		<link>http://drawlines.net/blog/blog/2012/03/16/50-beautiful-photos-on-instagram/</link>
		<comments>http://drawlines.net/blog/blog/2012/03/16/50-beautiful-photos-on-instagram/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 19:37:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Inspiration]]></category>

		<guid isPermaLink="false">http://drawlines.net/blog/?p=1428</guid>
		<description><![CDATA[Instagram is a free photo editing and sharing software for iPhone users. If you have the Instagram app downloaded and installed on your iPhone then you can edit your captured pictures by applying any one of the several filters and then share it with your friends on Facebook, Twitter, Flickr, Tumblr, Foursquare, and Posterous. It ]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>Instagram</strong> is a free photo editing and sharing software for <strong>iPhone</strong> users. If you have the <a href="http://instagr.am/">Instagram app</a> downloaded and installed on your iPhone then you can edit your captured pictures by applying any one of the several filters and then share it with your friends on Facebook, Twitter, Flickr, Tumblr, Foursquare, and Posterous. It is as simple as that.</p>
<p style="text-align: justify;">Although it is true that you can edit your photographs on software like Photoshop, to do that you will need a good enough knowledge of the software. If you are not well versed in photo editing software then you will have to hire a designer.</p>
<p style="text-align: justify;">Instagram eliminates these technical difficulties by enabling you to <strong>edit photos</strong> with the mere click of some buttons. You also get an unlimited number of uploads on the Instagram website. This feature has helped Instagram to become a social media for beautiful images.</p>
<p style="text-align: justify;">Thousands of images are uploaded and edited on Instagram every day. Here we have carefully selected 50 classic photographs to showcase. These images will prove to you how the <strong>filters and frames</strong> for Instagram can amazingly affect your photographs.</p>
<p><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/f5310134edd4966dca8606610fc8d725.jpg" alt="Beautiful Photos on Instagram" width="580" height="360" /></p>
<p><span id="more-1428"></span><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9214286339563257";
/* 728x90, created 10/13/10 */
google_ad_slot = "8066565885";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<h2>Beautiful Photos on Instagram</h2>
<p><a title="Westminster Skyline" href="http://instagr.am/p/jp2pN/">Westminister Skyline</a><br />
<a href="http://instagr.am/p/jp2pN/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/391514cff1188ce0be2408da98ce6aef.jpg" alt="Westminster Skyline" width="580" height="580" /></a></p>
<p><a title="Patrol Flashlight" href="http://instagr.am/p/Kuf4Z/">Patrol Flashlight</a><br />
<a href="http://instagr.am/p/Kuf4Z/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/dd58532ca855c70638155fc8a57d66ff.jpg" alt="Patrol Flashlight" width="580" height="580" /></a></p>
<p><a title="Covered in Snow" href="http://instagr.am/p/HCuIx_Qxu2/">Covered In Snow</a><br />
<a href="http://instagr.am/p/HCuIx_Qxu2/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/07b4e975b7219812a2b80fc1854042db.jpg" alt="Covered in Snow" width="580" height="580" /></a></p>
<p><a title="Blinding Sun" href="http://instagr.am/p/G812etJEMO/">Blinding Sun</a><br />
<a href="http://instagr.am/p/G812etJEMO/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/d8412603cfd63bcc767063a72981344a.jpg" alt="Blinding Sun" width="580" height="580" /></a></p>
<p><a title="Our First Pic Together as Cousin" href="http://instagr.am/p/O89Dv/">Our First Pic Together as Cousin</a><br />
<a href="http://instagr.am/p/O89Dv/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/a8c6a090b6c0744a503da9b8a51be47d.jpg" alt="Our First Pic Together as Cousin" width="580" height="580" /></a></p>
<p><a title="Raising Gotham" href="http://instagr.am/p/InCRT/">Raising Gotham</a><br />
<a href="http://instagr.am/p/InCRT/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/26438a82f5e7586d2bc48b138e70ea58.jpg" alt="Raising Gotham" width="580" height="580" /></a></p>
<p><a title="Smirnoff" href="http://statigr.am/p/572458349_13980140">Smirnoff</a><br />
<a href="http://statigr.am/p/572458349_13980140"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/be52ed4eaee3d1d3b72fab09dc2c9064.jpg" alt="Smirnoff" width="580" height="580" /></a></p>
<p><a title="Cowboy" href="http://statigr.am/p/583750465_13980140">Cowboy</a><br />
<a href="http://statigr.am/p/583750465_13980140"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/767e5b0ec2e196aa51361db8a6c8f262.jpg" alt="Cowboy" width="580" height="580" /></a></p>
<p><a title="Wine Time" href="http://instagr.am/p/N9vPY/">Wine Time</a><br />
<a href="http://instagr.am/p/N9vPY/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/b747d5708b7727084151bdbb6f739303.jpg" alt="Wine Time" width="580" height="580" /></a></p>
<p><a title="Flower Challenge" href="http://instagr.am/p/NFF8D/">Flower Challenge</a><br />
<a href="http://instagr.am/p/NFF8D/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/5eee1d1161bf2a39ad2fa8d70cba795d.jpg" alt="Flower Challenge" width="580" height="580" /></a></p>
<p><a title="Batu Cave - Malaysia" href="http://statigr.am/p/121923144280165806_4378570">Batu Caves-Malaysia</a><br />
<a href="http://statigr.am/p/121923144280165806_4378570"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/44f769d50e30d09992c24eedaf0a5d30.jpg" alt="Batu Caves - Malaysia" width="580" height="580" /></a></p>
<p><a title="Funny Elephant" href="http://statigr.am/p/122548013316554611_19497670">Funny Elephant</a><br />
<a href="http://statigr.am/p/122548013316554611_19497670"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/31c07d36102e4182922edf7dc4c90a54.jpg" alt="Funny Elephant" width="580" height="580" /></a></p>
<p><a title="Rayban" href="http://statigr.am/p/124522508457763530_22562711">Rayban</a><br />
<a href="http://statigr.am/p/124522508457763530_22562711"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/e99e43eba6d210c0a668654974e6af25.jpg" alt="Rayban" width="580" height="580" /></a></p>
<p><a title="Lykke omg li" href="http://instagr.am/p/JkK-E/">Lykke omg li</a><br />
<a href="http://instagr.am/p/JkK-E/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/fce0f5099fa0fa394c9d3e0b758cbd20.jpg" alt="Lykke omg li" width="580" height="580" /></a></p>
<p><a title="Breakfast at the NOHO Star" href="http://instagr.am/p/G_bg9pgT67/">Breakfast at the NOHO Star</a><br />
<a href="http://instagr.am/p/G_bg9pgT67/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/78be40954617f067c2f00ad2084e5233.jpg" alt="Breakfast at the NOHO Star" width="580" height="580" /></a></p>
<p><a title="Happy Valentine's Day" href="http://instagr.am/p/HAF3H0lBhs/">Happy Valentine&#8217;s Day</a><br />
<a href="http://instagr.am/p/HAF3H0lBhs/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/85d8c99908eecee7f248987edaf0fa66.jpg" alt="Happy Valentine's Day" width="580" height="580" /></a></p>
<p><a title="La-Maryline" href="http://statigr.am/p/386060409_3601869">La-Maryline</a><br />
<a href="http://statigr.am/p/386060409_3601869"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/61964277e698c36afbf1853a8ea3cf05.jpg" alt="La-Maryline" width="580" height="580" /></a><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9214286339563257";
/* 728x90, created 10/13/10 */
google_ad_slot = "8066565885";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<a title="Thanksgiving" href="http://instagr.am/p/Vcr0f/">Thanksgiving</a><br />
<a href="http://instagr.am/p/Vcr0f/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/b9494cb600e7a79c58b1140c2363460d.jpg" alt="Thanksgiving" width="580" height="580" /></a></p>
<p><a title="Colorful" href="http://statigr.am/p/124375356084111317_6053376">Colorful</a><br />
<a href="http://statigr.am/p/124375356084111317_6053376"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/54f5d620cfe06a1ac9bf95f00249382d.jpg" alt="Colorful" width="580" height="580" /></a></p>
<p><a title="Men's Autumn/Winter 2013 Runway Detail" href="http://instagr.am/p/mJzR-/">Men&#8217;s Autumn/Winter 2013 Runway Detail</a><br />
<a href="http://instagr.am/p/mJzR-/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/989344cacd974b9bb76dfb26414d7356.jpg" alt="Men's Autumn/Winter 2013 Runway Detail" width="580" height="580" /></a></p>
<p><a title="Plants Living in Photo Lens" href="http://instagr.am/p/m9Fep/">Plants Living in Photo Lens</a><br />
<a href="http://instagr.am/p/m9Fep/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/cffe1b92f1f6b677ed916cb25b9145f8.jpg" alt="Plants Living in Photo Lens" width="580" height="580" /></a></p>
<p><a title="Big Ben on a Wet Evening" href="http://instagr.am/p/et_9H/">Big Ben On a Wet Evening</a><br />
<a href="http://instagr.am/p/et_9H/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/c3b26a1c9953ce189f15493214c0de81.jpg" alt="Big Ben on a Wet Evening" width="580" height="580" /></a></p>
<p><a title="Black and White Night" href="http://statigr.am/p/561205721_8759286">Black and White Night</a><br />
<a href="http://statigr.am/p/561205721_8759286"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/60fec4d0f387fc3b90a044f2b6dd9b5e.jpg" alt="Black and White Night" width="580" height="580" /></a></p>
<p><a href="http://instagr.am/p/QAGck/">Birds at Huntington Beach State Park</a><br />
<a href="http://instagr.am/p/QAGck/"><img title="Birds at Huntington Beach State Park" src="http://drawlines.net/blog/wp-content/uploads/HLIC/eeafbf725ddd430c414b1f293a73430e.jpg" alt="Birds at Huntington Beach State Park" width="580" height="580" /></a></p>
<p><a title="High in the Sky" href="http://statigr.am/p/124287242706812043_16222494">High in the Sky</a><br />
<a href="http://statigr.am/p/124287242706812043_16222494"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/46ef9d85d01226eec92c892ad5b4fe2e.jpg" alt="High in the Sky" width="580" height="580" /></a></p>
<p><a title="Rosie Huntington-Whiteley" href="http://instagr.am/p/M9sq0/">Rosie Huntington-Whiteley</a><br />
<a href="http://instagr.am/p/M9sq0/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/c6ba1e27a04899f78391a6766d42546e.jpg" alt="Rosie Huntington-Whiteley" width="580" height="580" /></a></p>
<p><a title="Parallel Worlds" href="http://instagr.am/p/ROE3C/">Parallel Worlds</a><br />
<a href="http://instagr.am/p/ROE3C/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/41e6249bbc7a4015614698a744f0677a.jpg" alt="Parallel Worlds" width="580" height="580" /></a></p>
<p><a title="Swing" href="http://instagr.am/p/EoGLL/">Swing</a><br />
<a href="http://instagr.am/p/EoGLL/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/bc7a726d071d7b0c194c892ddfba1a09.jpg" alt="Swing" width="580" height="580" /></a></p>
<p><a title="Fish Eye Apartments" href="http://instagr.am/p/RKn6J/">Fish Eye Apartments</a><br />
<a href="http://instagr.am/p/RKn6J/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/b3684a75fcfc820c997d73538a34764c.jpg" alt="Fish Eye Apartments" width="580" height="580" /></a></p>
<p><a title="Sunset in NYC" href="http://instagr.am/p/JwUeY/">Sunset in NYC</a><br />
<a href="http://instagr.am/p/JwUeY/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/9303e4a5b0a74ac0549beecfd246267d.jpg" alt="Sunset in NYC" width="580" height="580" /></a></p>
<p><a title="Empty Studio" href="http://instagr.am/p/NC8QI/">Empty Studio</a><br />
<a href="http://instagr.am/p/NC8QI/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/9a92a56dde9472debecf29be4e51c1c5.jpg" alt="Empty Studio" width="580" height="580" /></a></p>
<p><a title="Palmerston North Airport" href="http://instagr.am/p/abRHi/">Palmerston North Airport</a><br />
<a href="http://instagr.am/p/abRHi/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/5763521beb78a2539906e3fbe5709de6.jpg" alt="Palmerston North Airport" width="580" height="580" /></a></p>
<p><a title="Moscow" href="http://instagr.am/p/QkJi7/">Moscow</a><br />
<a href="http://instagr.am/p/QkJi7/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/8b880896c6f9e462855bb631a5627edb.jpg" alt="Moscow" width="580" height="580" /></a><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9214286339563257";
/* 728x90, created 10/13/10 */
google_ad_slot = "8066565885";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<a title="Hibiscus" href="http://instagr.am/p/Sf8wM/">Hibiscus</a><br />
<a href="http://instagr.am/p/Sf8wM/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/414a2d8aca1b6498743ebb612573baa6.jpg" alt="Hibiscus" width="580" height="580" /></a></p>
<p><a title="Birds" href="http://instagr.am/p/ZVu7I/">Birds</a><br />
<a href="http://instagr.am/p/ZVu7I/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/052409cf59c2d5f9ecfd009fb01b574e.jpg" alt="Birds" width="580" height="580" /></a></p>
<p><a title="Steve Jobs" href="http://instagr.am/p/Qt_zL/">Steve Jobs</a><br />
<a href="http://instagr.am/p/Qt_zL/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/6a7eccdde44beee4c5d96f2da707bace.jpg" alt="Steve Jobs" width="580" height="580" /></a></p>
<p><a title="Pigeon" href="http://instagr.am/p/nLTrU/">Pigeon</a><br />
<a href="http://instagr.am/p/nLTrU/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/9120546b6f8980d2e1c5e3dc550fc39a.jpg" alt="Pigeon" width="580" height="580" /></a></p>
<p><a title="Sweetheart" href="http://instagr.am/p/GPeMA/">Sweetheart</a><br />
<a href="http://instagr.am/p/GPeMA/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/89cbe51aebad0e02b4847b15d81f4484.jpg" alt="Sweetheart" width="580" height="580" /></a></p>
<p><a title="The Road Not Taken" href="http://instagr.am/p/G6sAWEp6gr/">The Road Not Taken</a><br />
<a href="http://instagr.am/p/G6sAWEp6gr/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/e30b5889aaf820d34e058a9b7534ca2c.jpg" alt="The Road Not Taken" width="580" height="580" /></a></p>
<p><a title="China Town" href="http://instagr.am/p/d85JA/">China Town</a><br />
<a href="http://instagr.am/p/d85JA/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/32d5a5d531345cabc3e0b4f87adb860e.jpg" alt="China Town" width="580" height="580" /></a></p>
<p><a title="NYC Marathon" href="http://instagr.am/p/TBhO5/">NYC Marathon</a><br />
<a href="http://instagr.am/p/TBhO5/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/f8b14aed1a39299345896f82e5e38e88.jpg" alt="NYC Marathon" width="580" height="580" /></a></p>
<p><a title="Transparent Shadow" href="http://instagr.am/p/Gy7eVUp6uM/">Transparent Shadow</a><br />
<a href="http://instagr.am/p/Gy7eVUp6uM/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/04519b4a82bbdc201d24ebf782b7148f.jpg" alt="Transparent Shadow" width="580" height="580" /></a></p>
<p><a title="Heartbreak" href="http://instagr.am/p/GvC32/">Heartbreak</a><br />
<a href="http://instagr.am/p/GvC32/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/88f0bc3fa5fa82dfd86db38b6c137957.jpg" alt="Heartbreak" width="580" height="580" /></a></p>
<p><a title="Tiny Little VW Bus" href="http://instagr.am/p/ZLXtk/">Tiny Little VW Bus</a><br />
<a href="http://instagr.am/p/ZLXtk/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/0e6cec345767608b5f0b8e504d92ebb5.jpg" alt="Tiny Little VW Bus" width="580" height="580" /></a></p>
<p><a title="Street Light" href="http://instagr.am/p/c4JgJ/">Street Light</a><br />
<a href="http://instagr.am/p/c4JgJ/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/d27188dfd01a6c60a18e634f97fff3c9.jpg" alt="Street Light" width="580" height="580" /></a></p>
<p><a title="Lock" href="http://instagr.am/p/SjDKC/">Lock</a><br />
<a href="http://instagr.am/p/SjDKC/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/0b7edd52a391456b7a45864c940d0d72.jpg" alt="Lock" width="580" height="580" /></a></p>
<p><a title="Wind Farm in Iowa" href="http://instagr.am/p/QYBoa/">Wind Farm In Iowa</a><br />
<a href="http://instagr.am/p/QYBoa/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/bf9c9dd1592cab2c047cf62e0cc97fc2.jpg" alt="Wind Farm in Iowa" width="580" height="580" /></a></p>
<p><a title="Stairs" href="http://instagr.am/p/G4MEmuJ6n6/">Stairs</a><br />
<a href="http://instagr.am/p/G4MEmuJ6n6/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/30f2f9ae387449d19be4156c1bbbc411.jpg" alt="Stairs" width="580" height="580" /></a></p>
<p><a title="Morning" href="http://instagr.am/p/N3frx/">Morning</a><br />
<a href="http://instagr.am/p/N3frx/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/15ce04cf07a6d9733743d8d634a47708.jpg" alt="Morning" width="580" height="580" /></a></p>
<p><a title="Plymouth, Rosalia Rd" href="http://instagr.am/p/k8Zii/">Plymouth, Rosalia Rd</a><br />
<a href="http://instagr.am/p/k8Zii/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/8f02f3c198e8089db14159e38a99f735.jpg" alt="Plymouth, Rosalia Rd" width="580" height="580" /></a></p>
<h2>Conclusion</h2>
<p style="text-align: justify;">We hope you liked our collection. Let us know your reactions in the comments below. If you want more information then head over to the Instagram website and try to play with the features given there. You will get the hang of it quickly. Happy photo editing!</p>
]]></content:encoded>
			<wfw:commentRss>http://drawlines.net/blog/blog/2012/03/16/50-beautiful-photos-on-instagram/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Tools for Integrating WordPress and Twitter</title>
		<link>http://drawlines.net/blog/blog/2012/03/16/5-tools-for-integrating-wordpress-and-twitter/</link>
		<comments>http://drawlines.net/blog/blog/2012/03/16/5-tools-for-integrating-wordpress-and-twitter/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 19:31:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://drawlines.net/blog/?p=1425</guid>
		<description><![CDATA[What advice did people give you when you first started blogging? I bet I can guess. Newbies attempting to make their mark are told again and again that the key to growth is to write, write, write. ‘Don’t think about it’ web elders bark. ‘Don’t agonise about it. Don’t dream about it. Just click your ]]></description>
			<content:encoded><![CDATA[<p>What advice did people give you when you first started <strong>blogging</strong>? I bet I can guess. Newbies attempting to make their mark are told again and again that the key to growth is to write, write, write. ‘Don’t think about it’ web elders bark. ‘Don’t agonise about it. Don’t dream about it. Just click your New Post tab and do it!’</p>
<p>Almost every article you’ll read advises you to kneel at the altar of the Regular Update. Regular updating is the key to more visitors, a lower bounce rate and increased Adsense revenue, we are advised with a scholarly nod.</p>
<p>While this advice is far from all-you-need-to-know (personally, I’d emphasise a few other things first: choose a narrow topic that you know a lot about, get involved in web communities covering similar topics, don’t try to monetize too quickly, choose a powerful platform like WordPress, etc, etc.) it is important.</p>
<p><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/7f49541ec02d5ad55fe09a7602077a81.jpg" alt="Integrating WordPress and Twitter" width="580" height="360" /></p>
<p><span id="more-1425"></span></p>
<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-9214286339563257";
/* 728x90, created 10/13/10 */
google_ad_slot = "8066565885";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>A dead blog is one of the most obvious things to spot. A political homepage post about Hillary’s run for the democratic candidacy? A fashion blog with no mention of colour-blocking? A music site without a single snide remark about Dubstep? You’ve got yourself a deady.</p>
<p>But in our busy times, people are looking for shortcuts. Updating your blog with very short posts via email has become popular: no fuss, no stress, six posts a day, and you look as current as Agyness Deyn. The explosion in microblogging platforms like Tumblr has supported this trend: nobody expects blog posts to be long and comprehensive anymore. In fact (like Agyness Deyn’s hair), the shorter the better!</p>
<p>Another way to keep current is to add a Twitter feed to your site. Even if your last post was six hours ago, your tweet from six minutes ago can be there in a neat sidebar, breaking the news that Mitt Romney is the new republican candidate (or whatever) before anyone else.</p>
<p>There are many ways to use Twitter to enhance your blog – and vice versa. Integrating Twitter and WordPress sites is especially easy – there are tons of plug-ins, apps and tricks that can help you streamline your online life in this way, bringing all your web actions together.</p>
<p>Are you convinced yet? Integrating WordPress with Twitter is the new fibre: it will keep you regular, and keep you healthy.</p>
<h2>5 Tools for Integrating WordPress and Twitter</h2>
<p><a title="TweetSuite" href="http://wordpress.org/extend/plugins/tweetsuite/">TweetSuite</a><br />
This WordPress plug-in will do a few different things: firstly, it will place a Tweet This button at the end of each blog post, allowing anyone with a Twitter account (not just your Twitter followers) to publicise your story on Twitter using one of those neat small URLs. You can choose to generate yours using Adjix.com, B2l.me, Bit.ly, Is.gd, Metamark.net, SnipURL.com, Su.pr, TinyURL.com, or Tweetburner.com.</p>
<p>This button is similar to the Digg This buttons that were popular a couple of years ago and allowed bloggers to be contenders in the Digg Wars &#8211; a successful battle could make a blogger like the Gallic campaign made Julius Caesar.</p>
<p><a href="http://wordpress.org/extend/plugins/tweetsuite/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/d3e9f693825fa00969a8e8cf3f48e902.jpg" alt="TweetSuite" width="580" height="400" /></a></p>
<p>Secondly, you have the option of adding a few different widgets to your sidebar: Favourited Tweets, My-Last-Tweets, Most Tweeted Items and Recent Tweets. The most tweeted widget is especially handy – it works like a popular posts widget, adding a list of stories that are getting the most Twitter love.</p>
<p>Thirdly, a list of tweetbacks will appear at the end of your post. This will list any publicity your article is getting on Twitter.<br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9214286339563257";
/* 728x90, created 10/13/10 */
google_ad_slot = "8066565885";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
Finally – and this is the most basic but perhaps most useful feature – all new posts will automatically go to Twitter.</p>
<p>This highly recommended app is compatible with WordPress versions 2.7 to 3.3.1. There are a lot of plug-ins that will do one or some of the things listed above; TweetSuite has rendered them obsolete in one fell swoop. Why download six plug-ins when you can download one?</p>
<p>You can manipulate your URL format and choose your Tweet This button in the TweetSuite options menu.</p>
<p><a title="TwitterCounter" href="http://wordpress.org/extend/plugins/twittercounter/">TwitterCounter</a><br />
They’re calling it ‘Feedburner for Twitter’. This app is perfect for bloggers with a large Twitter following who want to show it off.</p>
<p><a href="http://wordpress.org/extend/plugins/twittercounter/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/22096f86967e0a8b00a068133de2f1d1.jpg" alt="TwitterCounter" width="580" height="400" /></a></p>
<p>Sign up at TwitterCounter.com to get the code. You’ll have to paste it into your sidebar.php file, then the site will start tracking your activity. Follower stats will appear in your WordPress sidebar in the format you select.</p>
<p>The info menu can show you your follower growth in graphical format, as well as displaying handy stats like average growth per day.</p>
<p><a title="TwitterFountain" href="http://wordpress.org/extend/plugins/twitterfountain/">TwitterFountain</a><br />
A very innovative sidebar widget that blends visuals with details of Twitter action. Flickr images and tweets that share the same hashtags are mashed up.</p>
<p><a href="http://wordpress.org/extend/plugins/twitterfountain/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/e9e0f317efbb840fce10b54362595c06.jpg" alt="TwitterFountain" width="580" height="400" /></a></p>
<p>Any topic can be covered, as long as there is a hashtag for it. In these days of #WillYouGetSlapped and #DisneyPickUpLines, you can bet there will be something!</p>
<p>Use TwitterFountain to produce an original content sidebar without signing up for any paid services.</p>
<p><a title="TwitterRemote" href="http://twittercounter.com/pages/twitter-widget">TwitterRemote</a><br />
A widget that shows Twitter users who have recently been to your blog. Find interesting people to follow – these users are likely to follow you back.</p>
<p><a href="http://twittercounter.com/pages/twitter-widget"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/9923869d6c92c34616681ea3e349b0f5.jpg" alt="TwitterRemote" width="580" height="400" /></a></p>
<p><a title="Twit-Twoo" href="http://www.twit-twoo.net/">Twit-Twoo</a><br />
Spending a lot of time on your blog? Want to tweet your brilliant ideas as they hit you, without leaving the page?</p>
<p>Twit-Twoo provides a sidebar that lets you do just this. <a title="A Beginners Guide to Using Ajax in Your Website" href="http://www.onextrapixel.com/2012/02/06/a-beginners-guide-to-using-ajax-in-your-website/">Ajax</a> takes care of the processing so your WordPress page doesn’t even have to reload for your new tweet to appear on your Twitter account.</p>
<p><a href="http://www.twit-twoo.net/"><img src="http://drawlines.net/blog/wp-content/uploads/HLIC/2f7505ba7703fbb1c67c7686d482bbde.jpg" alt="Twit-Twoo" width="580" height="400" /></a><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9214286339563257";
/* 728x90, created 10/13/10 */
google_ad_slot = "8066565885";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
No more rushing off to Twitter then returning to WordPress to find that your blog post didn’t autosave.</p>
<p>Twit-Twoo will also send you alerts (like appointment reminders) via Twitter – it is aimed at avid users who would benefit from integrating all their online activity within Twitter (rather than Google or Facebook).</p>
<h2>Conclusion</h2>
<p>Bringing your Twitter and WordPress activity together can save a lot of time and sometimes opens up new worlds – new ideas &#8211; you never thought of. Anyone wanting to streamline their online life or increase their following/visitor count can gain a lot from the available apps – these are just five of the best.</p>
<p>Have I missed anything? Please let me know about any neat integration ideas in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://drawlines.net/blog/blog/2012/03/16/5-tools-for-integrating-wordpress-and-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

