<?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>Website Design &#38; Support Solutions &#187; Wordpress Articles</title>
	<atom:link href="http://timothycaron.com/blog/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://timothycaron.com/blog</link>
	<description>by Timothy Caron</description>
	<lastBuildDate>Fri, 03 Sep 2010 14:33:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Creating a horizontal menu</title>
		<link>http://timothycaron.com/blog/2010/02/creating-a-horizontal-menu/</link>
		<comments>http://timothycaron.com/blog/2010/02/creating-a-horizontal-menu/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 23:00:53 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[Wordpress Articles]]></category>
		<category><![CDATA[html horizontal menu]]></category>
		<category><![CDATA[menu styling]]></category>

		<guid isPermaLink="false">http://timothycaron.com/blog/?p=341</guid>
		<description><![CDATA[Hey Guy&#8217;s and Gal&#8217;s, A while back Carlito mentioned in one of his comments about how I added the top menu to my blog, and if I designed the theme myself. And the answer is yes I did create the theme, based off of my main site at http://timothycaron.com where I provide website design and [...]]]></description>
			<content:encoded><![CDATA[<p>Hey Guy&#8217;s and Gal&#8217;s,</p>
<p>A while back Carlito mentioned in one of his comments about how I added the top menu to my blog, and if I designed the theme myself. And the answer is yes I did create the theme, based off of my main site at http://timothycaron.com where I provide website design and development services.</p>
<p>Below is the HTML Code and the Style information on how I created the top menu bar on this website.</p>
<pre class="brush: js">
<div id="headerblank">
<div id="header">
<ul>
<li><a href="#">Home</a></li>
<li><a class="active" href="#">Menu Item</a></li>
<li><a href="#">Menu Item</a></li>
<li><a href="#">Menu Item</a></li>
<li><a href="#">Menu Item</a></li>
<li><a href="#">Menu Item</a></li>
</ul>
</div>
</div>
</pre>
<p><strong>Note:</strong> the Class Attribute of &#8220;Active&#8221; is used to hightlight the tab to let users know what page they are on.</p>
<p>Below is the style information that is used for the above HTML Code.</p>
<pre class="brush: js">#headerblank
	{
		float:left;
		width:100%;
		margin:0px;
		padding:0 0 32px 0;
		background:url(images/background image) repeat-x left top;
	}
#header
	{
		float:none;
		width:952px;
		margin:0px auto;
		top:0px;
	}
#header ul
	{
		float:left;
		margin:0px;
		padding:0px;
		width:952px;
		display:block;
	}
#header ul li
	{
		float:left;
		margin:0px;
		padding:0px;
		display:block;
		background:url(images/background image) no-repeat right;
	}
#header ul li a
	{
		float:left;
		padding:14px 43px 0 43px;
		height:29px;
		font-family: Verdana;
		font-size:13px;
		font-weight:normal;
		color: #fff;
		line-height:14px;
		text-decoration:none;
	}
#header ul li a:hover, a.active
	{
		float:left;
		padding:14px 43px 0 43px;
		height:29px;
		font-family: Verdana;
		font-size:13px;
		font-weight:normal;
		color: #fff;
		line-height:14px;
		text-decoration:none;
		background: #206ea6;
	}
</pre>
<p>Remember to replace your background image reference to the image reference that you will use for your background, in the appropriate places.</p>
<p>I hope that this helps everyone who might be interested in apply this type of menu to there websites. For those of you who would like to use this in place off your current menu or add an extra menu to your wordpress blog you can replace the &lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt; with &lt;li&gt;&lt;?php wp_list_pages(  ); ?&gt;&lt;/li&gt;</p>
<p>I hope this helps</p>
<p>Have a wonderful day</p>
<p>Tim</p>
]]></content:encoded>
			<wfw:commentRss>http://timothycaron.com/blog/2010/02/creating-a-horizontal-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress for the Blackberry</title>
		<link>http://timothycaron.com/blog/2010/02/wordpress-for-the-blackberry/</link>
		<comments>http://timothycaron.com/blog/2010/02/wordpress-for-the-blackberry/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 01:07:35 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[Wordpress Articles]]></category>
		<category><![CDATA[blackberry app]]></category>

		<guid isPermaLink="false">http://timothycaron.com/blog/?p=331</guid>
		<description><![CDATA[Hey Guy&#8217;s &#038; Gal&#8217;s, Just incase you haven&#8217;t heard, WordPress announce the Blackberry App for WordPress. In a recent article posted WordPress Raanan Bar-Cohen stated&#8230; Very happy to announce that the Open Source WordPress for BlackBerry app has wrapped up the beta phase, and version 1.0 is now available. Thank-you to the tens of thousands [...]]]></description>
			<content:encoded><![CDATA[<p>Hey Guy&#8217;s &#038; Gal&#8217;s,</p>
<p>Just incase you haven&#8217;t heard, WordPress announce the Blackberry App for WordPress. In a recent article posted <a href="http://blackberry.wordpress.org/2010/02/04/version-1-0-videopress-support-improved-comments-and-app-world/">WordPress</a> Raanan Bar-Cohen stated&#8230;</p>
<blockquote><p>Very happy to announce that the Open Source WordPress for BlackBerry app has wrapped up the beta phase, and version 1.0 is now available. Thank-you to the tens of thousands of beta users who have provided invaluable feedback and feature enhancement ideas these past few months.</p></blockquote>
<p><center><strong>Watch the Intro video below</strong><br />
<embed src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.15" type="application/x-shockwave-flash" width="400" height="224" allowscriptaccess="always" allowfullscreen="true" flashvars="guid=qlmrTsQc&amp;width=400&amp;height=224&amp;qc_publisherId=p-18-mFEk4J448M" title="Introducing WordPress for BlackBerry 1.0"></embed></center><br />
<br/><br/><br />
Let us know your thoughts about the new Blackberry App below.<br />
Until next time&#8230;<br />
Have wonderful day.</p>
<p>Timothy</p>
]]></content:encoded>
			<wfw:commentRss>http://timothycaron.com/blog/2010/02/wordpress-for-the-blackberry/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mobile Content That Get&#8217;s Attention</title>
		<link>http://timothycaron.com/blog/2009/11/mobile-content-that-gets-attention/</link>
		<comments>http://timothycaron.com/blog/2009/11/mobile-content-that-gets-attention/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 13:19:24 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[Marketing Your Business]]></category>
		<category><![CDATA[Wordpress Articles]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[content for ebooks]]></category>
		<category><![CDATA[mobile devices]]></category>
		<category><![CDATA[music software]]></category>
		<category><![CDATA[pdas]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://timothycaron.com/blog/?p=255</guid>
		<description><![CDATA[Subject: Mobile Content That Get Attention Hi Guy&#8217;s &#38; Gal&#8217;s, If you are not familiar with mobile content, it is generally content that is used or viewed on mobile phones. If you have been thinking about making your content mobile, than this eCourse will help you to understand how you can successfully offer your mobile [...]]]></description>
			<content:encoded><![CDATA[<p>Subject: <strong>Mobile Content That Get Attention</strong></p>
<p>Hi Guy&#8217;s &amp; Gal&#8217;s,</p>
<p>If you are not familiar with <a title="modile content" href="http://tdcaron.fonline.hop.clickbank.net/?page=2">mobile content</a>, it is generally content that is used or viewed on mobile phones. If you have been thinking about making your content mobile, than this <a title="eCourse" href="http://tdcaron.fonline.hop.clickbank.net/?page=2">eCourse</a> will help you to understand how you can successfully offer your mobile content online.</p>
<p><img class="alignleft size-thumbnail wp-image-256" title="Mobile Devices" src="http://timothycaron.com/blog/wp-content/uploads/2009/11/yo_pocketPDA-150x150.jpg" alt="Mobile Devices" width="150" height="150" />With mobile devices such as mobile phones and PDAs, you are now able to offer your ebooks, videos, audios, music, software, and many other things to potential customers for them to download to their mobile phones.</p>
<p>In order to have the most success offering mobile content, you want to make sure to offer quality products that are new and exciting so that your potential customers are motivated to purchase your products.</p>
<p>Here are some ways to make sure that your mobile content gets attention.</p>
<p>1. Make your content useful. Try to think of ideas that you would find helpful to have on your own mobile device. If you find that you enjoy reading on your mobile phone, then you may want to make ebooks as your mobile content.</p>
<p>If you enjoy playing video games, you may want to develop some entertaining games that people will want to have on their phones.</p>
<p>2. Make sure to offer unique content. There are already many people offering ring tones, so you will want to come up with something that will gain people&#8217;s interest. Put together content, images, video, newsletters or other interesting and unique content that they cannot find anywhere else.</p>
<p>3. Offer entertaining videos. If you are creative at producing funny or entertaining videos, put together a few free ones, post them on video sites, and let people know that they can get more videos to download to their mobile phones.</p>
<p>4. Make sure that you watch for the screen width. Because mobile devices have a very small screen, width it is important to make sure that your mobile content still works on very small screens.</p>
<p>5. You also want to be careful about bandwidth. Since most mobile devices access the web at dial-up speeds, it is important to pay attention to your file sizes so that your customers are not waiting for 20 minutes for an image to download.</p>
<p>Make sure to compact your source code as much as possible.<br />
When you are writing your HTML code make sure that you keep everything tightly wrapped together in order to reduce the source code size.</p>
<p>The more interesting and fun you make your mobile content, the more likely you are to get a good following of customers. Just remember to always try to think outside the box and make all of your content unique, exciting and fun so that people will keep coming back for more.</p>
<p>For more information, visit <a href="http://tdcaron.fonline.hop.clickbank.net/?page=2">http://PocketBrand.com</a></p>
<p>Until next time, have a wonderful day<br />
Tim</p>
]]></content:encoded>
			<wfw:commentRss>http://timothycaron.com/blog/2009/11/mobile-content-that-gets-attention/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress &amp; Social Media</title>
		<link>http://timothycaron.com/blog/2009/11/wordpress-social-media/</link>
		<comments>http://timothycaron.com/blog/2009/11/wordpress-social-media/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 11:11:51 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[Wordpress Articles]]></category>
		<category><![CDATA[Publicize Plugin]]></category>
		<category><![CDATA[simplicity]]></category>
		<category><![CDATA[Wordpress & Social Media]]></category>

		<guid isPermaLink="false">http://timothycaron.com/blog/?p=249</guid>
		<description><![CDATA[WordPress &#038; Social Media - by Timothy Caron Hey Guy&#8217;s and Gal&#8217;s, in this post just like the title above &#8220;WordPress &#038; Social Media, I&#8217;d like to talk about simplicity. Nowadays with the advent of social media being all the rave, I find it difficult sometimes to keep up with everything. Trying to update Facebook, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>WordPress &#038; Social Media</strong><br />
- by Timothy Caron</p>
<p>Hey Guy&#8217;s and Gal&#8217;s, in this post just like the title above &#8220;WordPress &#038; Social Media, I&#8217;d like to talk about simplicity.</p>
<p>Nowadays with the advent of social media being all the rave, I find it difficult sometimes to keep up with everything. </p>
<p>Trying to update Facebook, Twitter, LinkedIn and a whole host of other social media and bookmarking websites everyday can be quite time consuming. I recently saw a video by Michael Pick from WordPress.TV that kinda of made me look toward a simpler way using the Publicize Plugin.<span id="more-249"></span></p>
<p>Take a look at the short video by Michael below and let me know what you think about the plugin, and if you think it would make your day a little easier.</p>
<p>Click To Watch Video<br />
<embed src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.10" type="application/x-shockwave-flash" width="640" height="360" allowscriptaccess="always" allowfullscreen="true" flashvars="guid=uhAS8D5g&#038;width=640&#038;height=360" title="Publicize! for WordPress.com"></embed></p>
<p>Until next time, have a wonderful day.<br />
PS Don&#8217;t forget to let me know what you think about this video and whether or not you might try out the Publicize Plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://timothycaron.com/blog/2009/11/wordpress-social-media/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Axe Your Webmaster</title>
		<link>http://timothycaron.com/blog/2009/10/axe-your-webmaster/</link>
		<comments>http://timothycaron.com/blog/2009/10/axe-your-webmaster/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 10:25:02 +0000</pubDate>
		<dc:creator>Timothy</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Wordpress Articles]]></category>
		<category><![CDATA[interaction]]></category>
		<category><![CDATA[social web]]></category>
		<category><![CDATA[we are social creatures]]></category>

		<guid isPermaLink="false">http://timothycaron.com/blog/?p=235</guid>
		<description><![CDATA[Axe Your Webmaster -by Timothy Caron Hey Guy&#8217;s and Gal&#8217;s, I just got through watching a video by Mark McLaren over at WordPress TV that talks about WordPress and the Social Web. This video was very enlightening and really made me think about the direction of even my own website and the services that I [...]]]></description>
			<content:encoded><![CDATA[<p>Axe Your Webmaster<br />
-by Timothy Caron</p>
<p>Hey Guy&#8217;s and Gal&#8217;s, I just got through watching a video by <a href="http://wordpress.tv/2009/09/26/mark-mclaren-wordpress-social-seattle09/" target="_blank">Mark McLaren</a> over at WordPress TV that talks about WordPress and the Social Web.</p>
<p><img class="size-medium wp-image-236 alignleft" title="049_axe-in-head_fs" src="http://timothycaron.com/blog/wp-content/uploads/2009/10/049_axe-in-head_fs-225x300.jpg" alt="049_axe-in-head_fs" width="225" height="300" />This video was very enlightening and really made me think about the direction of even my own website and the services that I provide in regards to website design.</p>
<p>The Static Website, is now becoming almost obsolete. And I say this only because we are social creatures and genuinely need that social interaction. Whether it be a one on one situation or in a group setting we are social creatures and long for some type of interaction.</p>
<p>WordPress And Social Media are bridging the gap. We can now with the combination of WordPress and other Social Media websites such as Twitter, Facebook, Linked-In and so many others, enter into a whole new realm of communication.</p>
<p>Are you engaging your customers and or visitors in such a way that will cause them to interact with you, whether on a business or personal level?</p>
<p>Take a few moments to watch the video by Mark and let us know your thoughts.<br />
<br/><br/><center><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="368" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://v.wordpress.com/EqBPf4KL" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="368" src="http://v.wordpress.com/EqBPf4KL" allowfullscreen="true"></embed></object><br />
</center><br />
What are you doing in your current online presence to interact with your customers and visitors?</p>
<p>Until next time, have a wonderful day<br />
Timothy</p>
]]></content:encoded>
			<wfw:commentRss>http://timothycaron.com/blog/2009/10/axe-your-webmaster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
