<?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>Maddison Designs &#187; Tips</title>
	<atom:link href="http://maddisondesigns.com/tag/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://maddisondesigns.com</link>
	<description>Professional Web Design &#38; Development</description>
	<lastBuildDate>Wed, 25 Jan 2012 07:33:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Never Ever Have Blank Lines Outside Your WordPress PHP Tags</title>
		<link>http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/</link>
		<comments>http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 23:13:45 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://maddisondesigns.info/?p=897</guid>
		<description><![CDATA[I had my day planned out nicely. Only a few minor updates to make on my WordPress theme for my new site and I would&#8217;ve been done (coding wise). Then it happened! I logged into the admin Dashboard to make a few content tweaks and things seemed a bit strange. When I tried to save some content updates, the page<p><a class="more-link" href="http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/" title="Continue reading &#8216;Never Ever Have Blank Lines Outside Your WordPress PHP Tags&#8217;">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>I had my day planned out nicely. Only a few minor updates to make on my <a title="Wordpress website" href="http://wordpress.org">WordPress</a> theme for my new site and I would&#8217;ve been done (coding wise). Then it happened! I logged into the admin Dashboard to make a few content tweaks and things seemed a bit strange. When I tried to save some content updates, the page just wouldn&#8217;t refresh properly. I even tried logging out of the dashboard&#8230; But still no luck <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_cry.gif' alt=':cry:' class='wp-smiley' /> </p>
<p><span id="more-897"></span></p>
<p>Next up, I tested the site to see if it was up and running ok. On the surface things looked fine but then I noticed that when I tried to type in a URL without the trailing forward-slash (&#8216;/&#8217;), the page wouldn&#8217;t appear. Normally, depending on how you&#8217;ve configured your <a title="Permalinks on the WordPress Codex" href="http://codex.wordpress.org/Using_Permalinks">Permalinks</a>, it will simply add the trailing slash automatically. Instead, all I got was a blank white screen starring back at me. Needless to say, a few expletives were uttered!</p>
<p>I tried thinking back to when everything seemed to be working fine. I also tried to remember what changes I&#8217;d made the day before. From memory, it was mainly some CSS updates to change links colours. There were no major code updates from what I could remember. I also couldn&#8217;t work out why the URL&#8217;s weren&#8217;t being processed correctly. After doing some Googling, I decided to raise a (low priority) support ticket with my hosting provider to see if any server changes had been made within the last few days. It was as if the .htaccess rules weren&#8217;t being obeyed. Good and bad news. The good news&#8230; no changes had been made to the server. The bad news&#8230; this didn&#8217;t get me any closer to resolving my issue.</p>
<p>The next step was to try changing to the default WordPress theme and do some testing. Things seemed to improved after changing themes. I could save my pages consistently. I could log in and out of the Dashboard without a problem. Even the URL&#8217;s worked fine, with or without the trailing slashes. Hmmm It would appear that the culprit was my own theme, which I&#8217;d been lovingly hand crafting. Next test was a restore from a backup of my theme. Luckily I&#8217;m quite strict at performing backups. I perform a backup of my workstation and my development server every couple of days, with the files kept on a separate hard drive. I rotate between 4 different sets for each machine. I restored the oldest backup which was just over a week old. Sure enough, everything worked fine. The next backup I tried was one from only two days prior. This also worked fine. Things were starting to look up! What this meant was that I&#8217;d narrowed it down to being caused by the changes that I&#8217;d made the previous day.</p>
<p>I now needed to compare the latest version of my code (the one with the problems) to the version from two days prior. I downloaded and installed <a title="WinMerge website" href="http://winmerge.org">WinMerge</a>, which is an extremely handy Open Source differencing and merging tool (for Windows). Luckily there weren&#8217;t too many files changed. As mentioned earlier, most of the changes were in my main stylesheet. Starting from a copy of my restored (working) theme, I slowly started to integrate the changes that I&#8217;d made the previous day. Most seemed fairly mundane. A few CSS changes and some very minor code updates. I then got to my <em>functions.php</em> file. I incorporated the changes and lo and behold, things broke immediately. Yay!! I&#8217;d found the damn file that was causing all my problems! Now it was simply a matter of narrowing down the exact cause.</p>
<p>Looking through the code reminded me of the changes that I&#8217;d made. I&#8217;d added a few comments to the code to document a couple of the functions (Silly me, I know! Real developers don&#8217;t document code!!). The other thing I&#8217;d done was to add a blank line in between where I&#8217;d closed a PHP tag and opened up the next one. The code snippet is question looked like this&#8230;</p>
<p style="text-align: center;"><img class="size-full wp-image-899 aligncenter" title="functions-php-code-fragment-before" src="http://maddisondesigns.com/wp-content/uploads/2010/03/functions-php-code-fragment-before.jpg" alt="" width="600" height="150" /></p>
<p>You&#8217;ll notice that between the closing PHP tag and the following opening tag, there&#8217;s a blank line. Gasp!! This is what was causing all the drama! The solution was to simply remove the offending blank line. In fact, since I was simply closing the PHP tag and immediately reopening it, I could easily omit both of them. The resulting code looked like&#8230;</p>
<p style="text-align: center;"><img class="size-full wp-image-898 aligncenter" title="functions-php-code-fragment-after" src="http://maddisondesigns.com/wp-content/uploads/2010/03/functions-php-code-fragment-after.jpg" alt="" width="600" height="150" /></p>
<p>As for the problems that it caused, well there were quite are few.</p>
<h3>URL&#8217;s weren&#8217;t processed properly</h3>
<p>Since my Permalinks were setup using the format &#8220;<em><strong>/%year%/%monthnum%/%postname%/</strong></em>&#8220;, the posts wouldn&#8217;t display properly if they didn&#8217;t have the trailing slash. Normally, this is something that is handled by your <em>.htaccess</em> file. Instead, I was simply receiving a blank page unless I specifically had the slash on the end of the URL.</p>
<h3>Strange content appearing</h3>
<p>This was a strange one. As you can see in the image below, characters such as quotes and apostrophes were being rendered incorrectly. You&#8217;d think this was because their was some &#8216;strange&#8217; characters stored in the database, but nope, it displayed perfectly fine once <em>functions.php</em> was fixed.</p>
<p style="text-align: center;"><img class="size-full wp-image-901 aligncenter" title="invalid-characters-being-rendered" src="http://maddisondesigns.com/wp-content/uploads/2010/03/invalid-characters-being-rendered.jpg" alt="" width="600" height="150" /></p>
<h3>Blank lines appearing at top of document source, before the DOCTYPE</h3>
<p>One of the repercussions of the blank line &#8220;incident&#8221; was that it caused blank lines to appear before the DOCTYPE within the html. This can cause problems with your RSS feed, in particular with Feedburner. Blank lines (outside of PHP tags) in any of your page templates can also cause the same problem, so I made sure I thoroughly checked those as well.</p>
<h3>Problems in the WP Dashboard</h3>
<p>As mentioned above, one of the first things that alerted me to the problem was my administration dashboard becoming unstable. I found that whenever I tried to save some content changes, the page wouldn&#8217;t refresh. Also, I couldn&#8217;t even log out of the WordPress Dashboard. I was able to browse through the various menu options within the Dashboard, but when it came to performing an action such as saving a page, that&#8217;s when the problems surfaced.</p>
<p>Due the the &#8216;strangeness&#8217; of some of the problems, this was one bug that took a while to track down. Thankfully though, it&#8217;s all fixed now. It&#8217;s certainly something that I&#8217;ll be more mindful of in the future when I create themes.</p>
<p>Have you come across this problem or any other strange issues? I&#8217;d love to hear, so feel free to leave a comment <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2010/03/never-ever-have-blank-lines-outside-your-wordpress-php-tags/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>10 Second Tip – Controlling The Photoshop Pixel Grid</title>
		<link>http://maddisondesigns.com/2009/10/10-second-tip-controlling-the-photoshop-pixel-grid/</link>
		<comments>http://maddisondesigns.com/2009/10/10-second-tip-controlling-the-photoshop-pixel-grid/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 11:09:54 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Creative Suite]]></category>
		<category><![CDATA[CS4]]></category>
		<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Pixel Grid]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://maddisondesigns.com/blog/?p=657</guid>
		<description><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-666 aligncenter" title="img_10-second-tip-controlling-the-photoshop-pixel-grid" src="http://maddisondesigns.com/blog/wp-content/uploads/2009/10/img_10-second-tip-controlling-the-photoshop-pixel-grid.jpg" alt="img_10-second-tip-controlling-the-photoshop-pixel-grid" width="600" height="150" /></p>
Photoshop CS4 has a great new feature called the Pixel Grid. The pixel grid appears when you zoom past 500% and can help with editing at the pixel level.<p><a class="more-link" href="http://maddisondesigns.com/2009/10/10-second-tip-controlling-the-photoshop-pixel-grid/" title="Continue reading &#8216;10 Second Tip – Controlling The Photoshop Pixel Grid&#8217;">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Photoshop CS4 has a great new feature called the Pixel Grid. The pixel grid appears when you zoom past 500% and can help with editing at the pixel level.</p>
<p><span id="more-657"></span></p>
<p>You can control whether this grid is displayed or not using the <strong>View &gt; Show &gt; Pixel Grid</strong> menu option.</p>
<p style="text-align: center;"><img class="size-full wp-image-659 aligncenter" title="img_pixel-grid" src="http://maddisondesigns.com/wp-content/uploads/2009/10/img_pixel-grid.jpg" alt="img_pixel-grid" width="600" height="150" /></p>
<p>If you don&#8217;t see the <strong>pixel grid </strong>menu option, then you most likely haven&#8217;t got <a title="OpenGL on Wikipedia" href="http://en.wikipedia.org/wiki/Opengl">OpenGL</a> enabled in your Photoshop preferences. To fix this, select the <strong>Edit &gt; Preferences &gt; Performance&#8230;</strong> menu option. Make sure that <strong>Enable OpenGL Drawing</strong> is checked.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-663" title="img_opengl-preference" src="http://maddisondesigns.com/wp-content/uploads/2009/10/img_opengl-preference.jpg" alt="img_opengl-preference" width="600" height="150" /></p>
<p>I personally find the Pixel Grid really useful. Do you? Leave a comment, I&#8217;d love to hear.</p>
]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2009/10/10-second-tip-controlling-the-photoshop-pixel-grid/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Sync Your Bookmarks Across Browsers And Computers</title>
		<link>http://maddisondesigns.com/2009/08/sync-your-bookmarks-across-browsers-and-computers/</link>
		<comments>http://maddisondesigns.com/2009/08/sync-your-bookmarks-across-browsers-and-computers/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 02:42:48 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Sync]]></category>
		<category><![CDATA[Synchronisation]]></category>
		<category><![CDATA[Synchronization]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://maddisondesigns.com/blog/?p=528</guid>
		<description><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-544 aligncenter" title="img_sync-your-bookmarks-across-browsers-and-computers" src="http://maddisondesigns.com/blog/wp-content/uploads/2009/08/img_sync-your-bookmarks-across-browsers-and-computers.jpg" alt="img_sync-your-bookmarks-across-browsers-and-computers" width="600" height="150" /></p>
For a long time now, I've wanted to be able to synchronise my bookmarks across multiple browsers and also multiple computers. Well, no more frustration! I came across a fantastic tool recently called Xmarks. It has a number of great features, but the one I like the most, is the ability to sync bookmarks between computers and between browser types.<p><a class="more-link" href="http://maddisondesigns.com/2009/08/sync-your-bookmarks-across-browsers-and-computers/" title="Continue reading &#8216;Sync Your Bookmarks Across Browsers And Computers&#8217;">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>For a long time now, I&#8217;ve wanted to be able to synchronise my bookmarks across multiple browsers and also multiple computers. Splitting my time between working on a desktop machine and a laptop, I was constantly frustrated when I&#8217;d go to select a bookmark that I&#8217;d found the previous day, only to realise that it was bookmarked on a different machine.</p>
<p><span id="more-528"></span></p>
<p>Well, no more frustration! I came across a fantastic tool recently called <a title="Xmarks" href="http://www.xmarks.com">Xmarks</a> (formerly Foxmarks). It has a number of great features, but the one I like the most, is the ability to sync bookmarks between computers and between browser types. They currently support Firefox, Internet Explorer and Safari (Max OS).</p>
<p>Xmarks is available as an add-on for Firefox and Safari, and will automatically synchronise itself on browser shutdown. Xmarks for IE runs as an auto-start executable and will simply load itself into memory, complete with a System Tray icon.</p>
<p>Within Firefox, you can access all the Xmarks settings by clicking on the small icon in the bottom right corner of the browser. This allows you to set up your account details, synchronisation types and other features. (click the image for a more detailed view of the configuration screens)</p>
<p style="text-align: center;"><a href="http://maddisondesigns.com/wp-content/uploads/2009/08/img_xmarks-screenshots-lge.jpg"><img class="size-full wp-image-531 aligncenter" title="img_xmarks-screenshots" src="http://maddisondesigns.com/wp-content/uploads/2009/08/img_xmarks-screenshots.png" alt="img_xmarks-screenshots" width="600" height="320" /></a></p>
<p>Whenever you add, delete or edit a bookmark, Xmarks will automatically backup the changes on their servers and store them for six months. To view and restore past bookmark collections, simply login to your account via their website or visit <a title="My Xmarks" href="http://my.xmarks.com">http://my.xmarks.com</a>. As well as the added security of knowing that your bookmarks are backed up, it also means that they are available for you to access anywhere, via the web. The site is even optimised for viewing on your iPhone or iPod touch screen.</p>
<p>As a regular firefox user and an iPhone devotee, I found it annoying that iTunes only supported bookmark synchronisation from Safari or Internet Explorer. Now I don&#8217;t need to worry as all my Firefox bookmarks will automatically sync across to IE and therefore also keep my iPhone updated as well. Just another added bonus!</p>
<p>Some of the other features provided:</p>
<ul>
<li>Xmarks will highlight the three top sites in your Google results based on how many people have bookmarked them.</li>
<li>You can click on the Xmarks info icon in your location bar to see detailed information about the site you are on.</li>
<li>It&#8217;s possible to create different profiles for different bookmarks. This allows you to keep Home and Work bookmarks sync seperately, for example.</li>
<li>You can share individual folders or your entire set of bookmarks.</li>
<li>In Firefox 3, you can securely sync your saved passwords between computers.</li>
</ul>
<p>Overall, I think its a great tool and after using it for a couple of weeks now, the only thing I&#8217;m disappointed about is not finding it sooner!</p>
<p>Have you found any other solutions for syncing your bookmarks? If so, leave a comment, I&#8217;d love to hear how others get around this problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2009/08/sync-your-bookmarks-across-browsers-and-computers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Second Tip – Adding Guides In Photoshop</title>
		<link>http://maddisondesigns.com/2009/07/10-second-tip-adding-guides-in-photoshop/</link>
		<comments>http://maddisondesigns.com/2009/07/10-second-tip-adding-guides-in-photoshop/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 00:23:46 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://maddisondesigns.com/blog/?p=517</guid>
		<description><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-518 aligncenter" title="img_10-second-tip-adding-guides-in-photoshop" src="http://maddisondesigns.com/blog/wp-content/uploads/2009/07/img_10-second-tip-adding-guides-in-photoshop.jpg" alt="img_10-second-tip-adding-guides-in-photoshop" width="600" height="150" /></p>
Adding guides to your Photoshop document are a great way of making sure everything's aligned nicely. Guides can be dragged from the Rulers on the edge of your document, or you can also use the "View > New Guide..." menu option.<p><a class="more-link" href="http://maddisondesigns.com/2009/07/10-second-tip-adding-guides-in-photoshop/" title="Continue reading &#8216;10 Second Tip – Adding Guides In Photoshop&#8217;">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Adding guides to your Photoshop document are a great way of making sure everything&#8217;s aligned nicely.</p>
<p>Guides can be dragged from the Rulers on the edge of your document, or you can also use the &#8220;<strong>View &gt; New Guide&#8230;</strong>&#8221; menu option.</p>
<p><span id="more-517"></span></p>
<p>When using the menu option, as well as entering in the guide location using px, mm or whatever Unit measurement you&#8217;d like, you can also use percentages. This is a simple way of dividing your  document up into a neat grid or for getting those guides aligned perfectly down the center.</p>
<p>If you have any other tips on how you use your guides in either Photoshop or any of the other Creative Suite apps, leave a comment because I&#8217;d love to hear them.</p>
<p style="text-align: center;"><img class="size-full wp-image-520 aligncenter" title="img_photoshop-new-guide-dialog" src="http://maddisondesigns.com/wp-content/uploads/2009/07/img_photoshop-new-guide-dialog.jpg" alt="img_photoshop-new-guide-dialog" width="600" height="200" /></p>
]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2009/07/10-second-tip-adding-guides-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>10 Second Tip – Configure Your Document Tabs In CS4</title>
		<link>http://maddisondesigns.com/2009/06/10-second-tip-configure-your-document-tabs-in-cs4/</link>
		<comments>http://maddisondesigns.com/2009/06/10-second-tip-configure-your-document-tabs-in-cs4/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 05:42:57 +0000</pubDate>
		<dc:creator>Anthony Hortin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Creative Suite]]></category>
		<category><![CDATA[CS4]]></category>
		<category><![CDATA[Document Tabs]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[InDesign]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://maddisondesigns.com/blog/?p=441</guid>
		<description><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-445 aligncenter" title="img_10-second-tip-configure-your-document-tabs-in-cs4" src="http://maddisondesigns.com/blog/wp-content/uploads/2009/06/img_10-second-tip-configure-your-document-tabs-in-cs4.jpg" alt="img_10-second-tip-configure-your-document-tabs-in-cs4" width="600" height="150" /></p>
One of the first changes you'll probably notice when upgrading to Adobe Creative Suite 4 (CS4), is the use of tabs to display your windows. Previously, your windows "floated" within the CS4 interface. Now, they dock neatly up against the Options panel.<p><a class="more-link" href="http://maddisondesigns.com/2009/06/10-second-tip-configure-your-document-tabs-in-cs4/" title="Continue reading &#8216;10 Second Tip – Configure Your Document Tabs In CS4&#8217;">Continue Reading &#8594;</a></p>]]></description>
			<content:encoded><![CDATA[<p>One of the first changes you&#8217;ll probably notice when upgrading to Adobe Creative Suite 4 (CS4), is the use of tabs to display your windows. Previously, your windows &#8220;floated&#8221; within the CS4 interface. Now, they dock neatly up against the Options panel.</p>
<p><span id="more-441"></span></p>
<p>At first, it can take a little bit to get use to. The good thing though is that it&#8217;s a simple change in your preferences to get your &#8220;floating windows&#8221; back. Simply &#8220;tick&#8221; or &#8220;untick&#8221; the checkbox in the relevant preferences dialog depending on whether you want your windows docked or not. Here&#8217;s where you can find the options for the three main Creative Suite applications, Photoshop, Illustrator and InDesign.</p>
<h2>Photoshop</h2>
<p>Select the &#8220;Edit &gt; Preferences &gt; Interface&#8230;&#8221; menu option.</p>
<p style="text-align: center;"><img class="size-full wp-image-453 aligncenter" title="img_Tabs-Photoshop" src="http://maddisondesigns.com/wp-content/uploads/2009/06/img_Tabs-Photoshop.jpg" alt="img_Tabs-Photoshop" width="600" height="370" /></p>
<h2>Illustrator</h2>
<p>Select the &#8220;Edit &gt; Preferences &gt; User Interface&#8230;&#8221; menu option.</p>
<p style="text-align: center;"><img class="size-full wp-image-451 aligncenter" title="img_Tabs-Illustrator" src="http://maddisondesigns.com/wp-content/uploads/2009/06/img_Tabs-Illustrator.jpg" alt="img_Tabs-Illustrator" width="545" height="351" /></p>
<h2>InDesign</h2>
<p>Select the &#8220;Edit &gt; Preferences &gt; Interface&#8230;&#8221; menu option.</p>
<p><img class="aligncenter size-full wp-image-452" title="img_Tabs-InDesign" src="http://maddisondesigns.com/wp-content/uploads/2009/06/img_Tabs-InDesign.jpg" alt="img_Tabs-InDesign" width="600" height="498" /></p>
<p>It&#8217;s that easy! I hope you found this tip useful. I&#8217;d love to hear what you prefer so leave a comment. Me? I&#8217;m still undecided about the tabs. For the time being, I&#8217;ll use them a little while longer <img src='http://maddisondesigns.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://maddisondesigns.com/2009/06/10-second-tip-configure-your-document-tabs-in-cs4/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

