<?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/"
	>

<channel>
	<title>Inf Design</title>
	<atom:link href="http://www.infscripts.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.infscripts.com</link>
	<description>Themes and templates</description>
	<pubDate>Tue, 03 May 2011 20:45:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Menu With Rounded Corners In CSS</title>
		<link>http://www.infscripts.com/43-menu-with-rounded-corners-in-css.html</link>
		<comments>http://www.infscripts.com/43-menu-with-rounded-corners-in-css.html#comments</comments>
		<pubDate>Tue, 03 May 2011 17:57:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[CSS Tutorials]]></category>

		<guid isPermaLink="false">http://www.infscripts.com/?p=43</guid>
		<description><![CDATA[This is a CSS tutorial on how to make a menu with rounded corners using background images.


Live demo of the menu, including all html code, css code and images used in this tutorial.
The first step is to create the images for the buttons in the menu. Begin by creating two buttons with rounded corners. One [...]]]></description>
			<content:encoded><![CDATA[<p>This is a CSS tutorial on how to make a menu with rounded corners using background images.</p>
<p><img class="alignnone" title="Menu Screenshot" src="/demo/cssmenu/menuss.gif" alt="" width="500" height="65" /><br />
<a href="http://www.infscripts.com/demo/cssmenu/" target="_blank"></a></p>
<p><a href="http://www.infscripts.com/demo/cssmenu/" target="_blank">Live demo of the menu</a>, including all html code, css code and images used in this tutorial.</p>
<p>The first step is to create the images for the buttons in the menu. Begin by creating two buttons with rounded corners. One which will be used for the hover effect and to highlight the current page, and one which will be used for all unselected buttons.</p>
<p><img class="alignnone" title="Button images" src="/demo/cssmenu/buttonimages.gif" alt="" width="321" height="100" /></p>
<p>Next you need to cut the images into two parts, one for the left corner and one for the right corner. Be sure to make the width of the right corner image large enough to cover the widest button in your menu (it will be cut off if the button is smaller). The left image should be as small as possible and cut off right after the corner. When you are done, you should have four images: highlighted left corner, highlighted right corner, unhighlighted left corner and unhighlighted right corner. In this example, the width of the right corner images is 250 pixels and of the left 10 pixels.</p>
<p><img class="alignnone" title="Split images" src="/demo/cssmenu/splitimages.gif" alt="" width="321" height="100" /></p>
<p>For the HTML code, we will be creating a list using the unordered list tag, &lt;ul&gt;.</p>
<pre>&lt;ul id="menu"&gt;
	&lt;li&gt;&lt;a href="#" class="highlight"&gt;&lt;span&gt;Home&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&#09;&lt;li&gt;&lt;a href="#"&gt;&lt;span&gt;Lorem&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&#09;&lt;li&gt;&lt;a href="#"&gt;&lt;span&gt;Ipsum&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&#09;&lt;li&gt;&lt;a href="#"&gt;&lt;span&gt;Dolor&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&#09;&lt;li&gt;&lt;a href="#"&gt;&lt;span&gt;Sit Amet&lt;/span&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>Next, we are going to style the list and add the images for the buttons:</p>
<pre>#menu {
&#09;float: left;
&#09;padding: 0px 10px;
&#09;margin: 0px;
&#09;border-bottom: 5px solid #05480a;
}</pre>
<p>This code will add a 5 pixel border below the menu with the same color as the highlighted button.</p>
<pre>#menu li {
&#09;display: inline;
&#09;list-style: none;
&#09;margin: 0px;
&#09;padding: 0px;
}</pre>
<p>The first line of code will make the menu horizontal, by removing the linebreak after each list item. The second line will remove the bullets which are displayed next to each list item.</p>
<pre>#menu li a {
&#09;float: left;
&#09;color: #000000;
&#09;text-decoration: none;
&#09;background: url('menuleft.gif') top left no-repeat;
&#09;margin: 0px 1px;
&#09;padding: 9px 0px 6px 10px;
}</pre>
<p>Left padding is to give space to the left corner image, should be the same width as the left corner image (10 pixels in this example).</p>
<pre>#menu li a span {
&#09;background: url('menuright.gif') top right no-repeat;
&#09;padding: 9px 25px 6px 15px;
}</pre>
<p>It is only possible to add one background image to each tag, so we need to use the &lt;span&gt;-tag for the right corner image. As we have already added 10 pixels of left padding above, the button text is centered by setting the right padding to 25 pixels and the left padding to 15 pixels.</p>
<pre>#menu li a:hover,
#menu li a.highlight {
&#09;background: url('menuleft-hl.gif') top left no-repeat;
&#09;color: #ffffff;
}</pre>
<p>Highlight the left corner if hover or &#8220;highlight&#8221; class is used.</p>
<pre>#menu li a:hover span,
#menu li a.highlight span {
&#09;background: url('menuright-hl.gif') top right no-repeat;
}</pre>
<p>Same as above for the right corner.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infscripts.com/43-menu-with-rounded-corners-in-css.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Keyword Research Tips And Free Tools</title>
		<link>http://www.infscripts.com/33-keyword-research-tips-and-free-tools.html</link>
		<comments>http://www.infscripts.com/33-keyword-research-tips-and-free-tools.html#comments</comments>
		<pubDate>Mon, 25 Apr 2011 14:19:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.infscripts.com/?p=33</guid>
		<description><![CDATA[To rank well in the search engines, the keywords you target must be carefully picked. If the keywords are too broad (for example &#8220;books&#8221;, &#8220;photos&#8221; etc.), your site will have millions of competitors and little chance to rank well. If the keyword phrases are too narrow, few people are likely to search them and find [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" style="float: right;" title="SEO Keywords" src="/blogimages/seo.gif" alt="" height="135" width="130">To rank well in the search engines, the keywords you target must be carefully picked. If the keywords are too broad (for example &#8220;books&#8221;, &#8220;photos&#8221; etc.), your site will have millions of competitors and little chance to rank well. If the keyword phrases are too narrow, few people are likely to search them and find your site. There are also a couple of other factors to consider when using keywords for SEO purposes:</p>
<p><strong>Keyword density:</strong> The number of times a keyword or keyword phrase appear in the content of a page. It is calculated by dividing the number of times the keyword is used with the number of words total in the text. If a keyword is used 5 times in a 200 word text, the density would be 2,5%. To calculate the keyword density of a phrase with two or more words, you need to multiply the number of words in the phrase with the number of times it appears. For example, if the phrase &#8220;xword yword zword&#8221; is used 6 times in a 600 word text, the keyword density would be ((3*6)/600)*100 = 3%. It&#8217;s best to focus on just one word or phrase per page, especially for competitive terms. A keyword density of around 2-4% is considered optimal by many. A useful tool to easily calculate the keyword density is the <a href="http://tools.seobook.com/general/keyword-density/" target="_blank">Keyword density analyzer</a>.</p>
<p><strong>Keywords in title and headings:</strong> Probably the most important places to put the keywords. Having the right keywords in the title tag will also increase click through rate from the search engines. People are more likely to click a link if the title includes the phrase they have searched for.</p>
<p><strong>Keywords in URL:</strong> Most search engines use the keywords in the domain name as part of their ranking formula. Use the domain name to target one or two of your most important keywords.</p>
<p><strong>Keywords in backlinks:</strong> Keywords in the anchor text of inbound links is one of the most important factors in ranking well in the search engines. The anchor text should reflect the content of your page and if the links is from a related site, the value of the link will be higher. However, don&#8217;t use the exact same keywords on every link. Make sure you vary your anchor links to make them look more natural.</p>
<p><strong>Three Free Keyword Research Tools</strong></p>
<p><a href="https://adwords.google.com/select/KeywordToolExternal" target="_blank">Adwords Keyword Tool</a> - Keyword tool from Google. Allows you to type in any word and get a ton of suggestions on synonyms and phrases related to the keyword. It will also give you an estimate on how many searches the keyword gets per month, both globally and by country.</p>
<p><a href="http://www.wordstream.com/keywords" target="_blank">WordStream</a> - A tool that allows you to enter a keyword phrase and get a list of related phrases and keywords. Useful to find new phrases that might not have found otherwise.</p>
<p><a href="http://tools.seobook.com/keyword-tools/seobook/" target="_blank">SEO Book</a> - Allows you to enter keywords and get an estimate of the daily search volume on Google, Yahoo and Bing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infscripts.com/33-keyword-research-tips-and-free-tools.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Best YouTube Alternatives</title>
		<link>http://www.infscripts.com/26-the-best-youtube-alternatives.html</link>
		<comments>http://www.infscripts.com/26-the-best-youtube-alternatives.html#comments</comments>
		<pubDate>Thu, 10 Feb 2011 21:34:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://www.infscripts.com/?p=26</guid>
		<description><![CDATA[Six video sharing sites which are great alternatives to YouTube:
Vimeo is a popular video sharing site that was founded in 2004. Vimeo allows users to upload videos in several different formats and has full support for 720p high-definition video. With a desktop uploader users can easily upload multiple videos without visiting the site. They do [...]]]></description>
			<content:encoded><![CDATA[<p><strong><img class="alignright" style="float:right" title="YouTube Alternatives" src="/blogimages/youtubealt.gif" alt="" width="130" height="146" />Six video sharing sites which are great alternatives to YouTube:</strong></p>
<p><a href="http://www.vimeo.com/" target="_blank"><strong>Vimeo</strong></a> is a popular video sharing site that was founded in 2004. Vimeo allows users to upload videos in several different formats and has full support for <strong>720p high-definition video</strong>. With a desktop uploader users can easily upload multiple videos without visiting the site. They do not allow gaming videos, commercial videos or pornographic content. Basic users (free accounts) are allowed 500 MB per week in uploads. For more features there is an upgrade available, Vimeo Plus, which cost $60 per year. Vimeo plus users get 5000 MB per week in storage space, are allowed to upload unlimited amount of HD videos, can download an unlimited number of videos and get access to more detailed statistics.</p>
<p><a href="http://www.dailymotion.com/" target="_blank"><strong>Dailymotion</strong></a> has been online since 2005 and is based in Paris, France. The site currently gets over <strong>72 million pageviews per month</strong> and is one of the top 50 sites in the world. Standard users can upload MP4, AVI and MOV videos with a resolution of 640&#215;480 (4:3) and 720&#215;480 (16:9) and audio bitrate of 320 kbps stereo. Users who create original content (MotionMaker user account) and official content producers (Official User account) are allowed to upload videos with unlimited length in high definition format (1280&#215;720 resolution). In June 2009 Dailymotion launched their HTML5 player which allows users to view videos without the the need to install the Adobe Flash plugin.</p>
<p><a href="http://www.liveleak.com/" target="_blank"><strong>LiveLeak</strong></a> is a video site focusing on media, news and reality-based content such as war, terrorism and politics. The site was founded in 2006 by the company behind Ogrish.com. LiveLeak became well-known in 2007 when<strong> the execution video of Saddam Hussein was leaked and posted on the site</strong>. Basic membership is free but upgraded users ($9.95/month) get more features, including 500 MB limit on videos, higher quality videos, direct download links, no advertisements and access to the premium forum sections.</p>
<p><a href="http://www.metacafe.com/" target="_blank"><strong>Metacafe</strong></a> is a video sharing site that focuses on entertainment. The site was founded in 2002 and currently has over 40 million unique visitors per month. Unlike many video sites, Metacafe does not allow any kind of video to be posted. Instead the site <strong>specializes in short-form original content</strong> - the average video is just 90 seconds long. Everything on Metacafe is determined entirely by it&#8217;s users. Videos are generated by the users and selected, reviewed and rewarded by the community. For example, the thousands of videos that are uploaded each day are reviewed and approved by a panel of 80,000 volunteers.</p>
<p><a href="http://www.hulu.com/" target="_blank"><strong>Hulu</strong></a> is an online video service founded in 2007 that provides content from more than 225 content producers including Fox, NBC, Warner Bros and Paramount. Hulu is ad-supported and provides users with free streaming video of TV-shows such as <strong>Glee, Family Guy, The Office and House</strong>. The content is currently only offered to users in the United States. Videos can be watched in Flash Video format with a 480p resolution on the Hulu website or in a stand-alone desktop program called Hulu Desktop which is available for Windows, Mac and Linux. Upgrading to a HuluPlus account costs $7.99 per month and gives the user access to 720p (HD) videos and access to full seasons and series of several popular shows.</p>
<p><a href="http://www.break.com/" target="_blank"><strong>Break.com</strong></a> is a humor site which provides users with <strong>videos, pictures, flash games and other content</strong>. The site was launched in 2004 and is one of the top 600 most viewed sites in the world according to Alexa. For uploads, the maximum size is 500 MB per file and a total of 5000 MB per user. A large number of file formats are supported, including mpeg, wmv, divx, avi and mov. For users who produce original content it is possible to earn money if the content is posted on one of Break.com&#8217;s featured pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infscripts.com/26-the-best-youtube-alternatives.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>15 Three Column CSS Templates</title>
		<link>http://www.infscripts.com/21-15-three-column-css-templates.html</link>
		<comments>http://www.infscripts.com/21-15-three-column-css-templates.html#comments</comments>
		<pubDate>Wed, 21 Apr 2010 23:56:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[CSS Templates]]></category>

		<guid isPermaLink="false">http://www.infscripts.com/blog/?p=21</guid>
		<description><![CDATA[15 excellent three column CSS templates with valid XHTML code. These templates are all free to download and use.
1. Aqueous Light

Author: SixShooterMedia &#124; Download &#124; Demo
2. Established

Author: Spyka &#124; Download &#124; Demo
3. Unbound

Author: Styleshout &#124; Download &#124; Demo
4. Nourish

Author: FreeCssTemplates.org &#124; Download &#124; Demo
5. Simple Magazine

Author: Arcsin &#124; Download &#124; Demo
6. Simply Plain v2

Author: Kalyan [...]]]></description>
			<content:encoded><![CDATA[<p>15 excellent three column CSS templates with valid XHTML code. These templates are all free to download and use.</p>
<h3>1. Aqueous Light</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/01aq.gif" alt="" /></p>
<p><span id="more-21"></span>Author: <a rel="nofollow" href="http://www.sixshootermedia.com/" target="_blank">SixShooterMedia</a> | <a rel="nofollow" href="http://www.sixshootermedia.com/freebies/aqueous_light.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://www.sixshootermedia.com/free-templates/" target="_blank">Demo</a></p>
<h3>2. Established</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/02es.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.spyka.net/" target="_blank">Spyka</a> | <a rel="nofollow" href="http://www.justfreetemplates.com/download?id=1332" target="_blank">Download</a> | <a rel="nofollow" href="http://justfreetemplates.com/preview/web-templates/1332.html" target="_blank">Demo</a></p>
<h3>3. Unbound</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/03un.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.styleshout.com/" target="_blank">Styleshout</a> | <a rel="nofollow" href="http://www.styleshout.com/hits.php?type=tmp&amp;id=23&amp;url=templates/downloads/Unbound11.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://www.styleshout.com/templates/preview/Unbound11/index.html" target="_blank">Demo</a></p>
<h3>4. Nourish</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/04no.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.freecsstemplates.org/" target="_blank">FreeCssTemplates.org</a> | <a rel="nofollow" href="http://www.freecsstemplates.org/download/zip/nourish/" target="_blank">Download</a> | <a rel="nofollow" href="http://www.freecsstemplates.org/preview/nourish/" target="_blank">Demo</a></p>
<h3>5. Simple Magazine</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/05si.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://templates.arcsin.se/" target="_blank">Arcsin</a> | <a rel="nofollow" href="http://templates.arcsin.se/download/simple-magazine-website-template/" target="_blank">Download</a> | <a rel="nofollow" href="http://templates.arcsin.se/demo/simple-magazine-website-template/" target="_blank">Demo</a></p>
<h3>6. Simply Plain v2</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/06si.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.getfreewebdesigns.com/profile/kalyan/" target="_blank">Kalyan</a> | <a rel="nofollow" href="http://www.getfreewebdesigns.com/designs/?id=177" target="_blank">Download</a> | <a rel="nofollow" href="http://www.getfreewebdesigns.com/preview/?template=177" target="_blank">Demo</a></p>
<h3>7. Hanging</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/07ha.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.freecsstemplates.org/" target="_blank">FreeCssTemplates.org</a> | <a rel="nofollow" href="http://www.freecsstemplates.org/download/zip/hanging/" target="_blank">Download</a> | <a rel="nofollow" href="http://www.freecsstemplates.org/preview/hanging/" target="_blank">Demo</a></p>
<h3>8. Blue World</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/08bl.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.mitchinson.net/" target="_blank">Mitchinson</a> | <a rel="nofollow" href="http://www.mitchinson.net/designs/38_blue_world.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://www.mitchinson.net/designs/38_blue_world/index.html" target="_blank">Demo</a></p>
<h3>9. Ecobusiness</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/09ec.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://opensourcetemplates.org/" target="_blank">OpenSourceTemplates.org</a> | <a rel="nofollow" href="http://opensourcetemplates.org/templates/download/eco_business.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://opensourcetemplates.org/preview/eco-business-website-templates/" target="_blank">Demo</a></p>
<h3>10. Andreas01</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/10an.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.getfreewebdesigns.com/profile/andreas/" target="_blank">Andreas Viklund</a> | <a rel="nofollow" href="http://www.getfreewebdesigns.com/designs/?id=363" target="_blank">Download</a> | <a rel="nofollow" href="http://www.getfreewebdesigns.com/preview/?template=363" target="_blank">Demo</a></p>
<h3>11. Multiflex-4</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/11mu.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.1234.info/" target="_blank">1234.info</a> | <a rel="nofollow" href="http://1234.info/webtemplates/multiflex4/multiflex42.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://1234.info/webtemplates/multiflex4/demo/" target="_blank">Demo</a></p>
<h3>12. Colorful Structure</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/12co.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://freecss.info/" target="_blank">FreeCSS.info</a> | <a rel="nofollow" href="http://freecss.info/downloads/fulltemplate.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://freecss.info/wp-content/themes/FreeCSS/preview.php?preview=www.freecss.info/colorful&amp;title=Colorful%20Structure&amp;id=1065" target="_blank">Demo</a></p>
<h3>13. RS 7</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/13rs.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://ramblingsoul.com/" target="_blank">RamblingSoul</a> | <a rel="nofollow" href="http://ramblingsoul.com/dl/rs7.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://ramblingsoul.com/preview/rs7/" target="_blank">Demo</a></p>
<h3>14. Stylevantage</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/14st.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.styleshout.com/" target="_blank">Styleshout</a> | <a rel="nofollow" href="http://www.styleshout.com/hits.php?type=tmp&amp;id=1&amp;url=templates/downloads/Stylevantage11.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://www.styleshout.com/templates/preview/Stylevantage11/index.html" target="_blank">Demo</a></p>
<h3>15. Precision</h3>
<p><img style="padding-left:10px;" src="/blogimages/15csstemplates1/15pr.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.freecsstemplates.org/" target="_blank">FreeCssTemplates.org</a> | <a rel="nofollow" href="http://www.freecsstemplates.org/download/zip/precision/" target="_blank">Download</a> | <a rel="nofollow" href="http://www.freecsstemplates.org/preview/precision/" target="_blank">Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infscripts.com/21-15-three-column-css-templates.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>10 Video Wordpress Themes</title>
		<link>http://www.infscripts.com/14-10-video-wordpress-themes.html</link>
		<comments>http://www.infscripts.com/14-10-video-wordpress-themes.html#comments</comments>
		<pubDate>Thu, 08 Apr 2010 20:29:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://www.infscripts.com/blog/?p=14</guid>
		<description><![CDATA[10 good looking WordPress themes for video blogging (vlogging)
Foxinni Video Theme (Free)

Theme dedicated to easily displaying video posts with multiple color schemes. Users are able to embed videos from any site or add custom personally hosted .flv videos.
Download &#124; Theme Demo
Videographer (Free)

Easily embed YouTube videos with thumbnails.
Download &#124; Theme Demo
Video Flick

Video Flick is a theme [...]]]></description>
			<content:encoded><![CDATA[<p>10 good looking WordPress themes for video blogging (vlogging)</p>
<h3>Foxinni Video Theme (Free)</h3>
<p><img src="/blogimages/10videowp1/01fox.gif" alt="" /></p>
<p><span id="more-14"></span>Theme dedicated to easily displaying video posts with multiple color schemes. Users are able to embed videos from any site or add custom personally hosted .flv videos.</p>
<p><a rel="nofollow" href="http://foxinni.com/my-themes/video-wordpress-theme/" target="_blank">Download</a> | <a rel="nofollow" href="http://videos.foxinni.com/" target="_blank">Theme Demo</a></p>
<h3>Videographer (Free)</h3>
<p><img src="/blogimages/10videowp1/02vid.gif" alt="" /></p>
<p>Easily embed YouTube videos with thumbnails.</p>
<p><a rel="nofollow" href="http://www.zoomstart.com/videographer-wordpress-theme/" target="_blank">Download</a> | <a rel="nofollow" href="http://www.thiswickedlife.com/" target="_blank">Theme Demo</a></p>
<h3>Video Flick</h3>
<p><img src="/blogimages/10videowp1/03flick.gif" alt="" /></p>
<p>Video Flick is a theme compatible with any video service that provides embed code and videos on your own host.</p>
<p><a rel="nofollow" href="http://www.press75.com/v4/the-video-flick-wordpress-theme/" target="_blank">Buy</a> | <a rel="nofollow" href="http://www.press75.com/v4/video-flick-theme-demo/" target="_blank">Theme Demo</a></p>
<h3>High Def</h3>
<p><img src="/blogimages/10videowp1/04high.gif" alt="" /></p>
<p>Minimally designed multimedia theme. Features mac-style sliding content and built in HD player with full-screen capabilities.</p>
<p><a rel="nofollow" href="http://graphpaperpress.com/2008/08/25/high-def-theme-for-wordpress/" target="_blank">Buy</a> | <a rel="nofollow" href="http://graphpaperpress.com/demo/?themedemo=high-def" target="_blank">Theme Demo</a></p>
<h3>Wave</h3>
<p><img src="/blogimages/10videowp1/05wave.gif" alt="" /></p>
<p>Flexible theme for those who want to build a video focused site.</p>
<p><a rel="nofollow" href="http://themeforest.net/item/wave-a-video-centric-theme-for-wordpress/45855" target="_blank">Buy</a> | <a rel="nofollow" href="http://themeforest.net/item/wave-a-video-centric-theme-for-wordpress/full_screen_preview/45855" target="_blank">Theme Demo</a></p>
<h3>WooTube</h3>
<p><img src="/blogimages/10videowp1/06wootube.gif" alt="" /></p>
<p>Easy to use and automatically resizes videos. Comes with seven different color schemes.</p>
<p><a rel="nofollow" href="http://www.woothemes.com/2009/01/wootube/" target="_blank">Buy</a> | <a rel="nofollow" href="http://www.woothemes.com/demo/?name=wootube" target="_blank">Theme Demo</a></p>
<h3>Tubular</h3>
<p><img src="/blogimages/10videowp1/07tub.gif" alt="" /></p>
<p>Tubular is a two-column fixed-width video themes.</p>
<p><a rel="nofollow" href="http://www.studiopress.com/themes/tubular" target="_blank">Buy</a> | <a rel="nofollow" href="http://www.studiopress.com/demo/tubular.html" target="_blank">Theme Demo</a></p>
<h3>eVid</h3>
<p><img src="/blogimages/10videowp1/08evid.gif" alt="" /></p>
<p>Designed for video bloggers to easily integrate videos from video hosts such as Youtube, Vimeo, Veoh, MetaCafe.</p>
<p><a rel="nofollow" href="http://www.elegantthemes.com/gallery/evid/" target="_blank">Buy</a> | <a rel="nofollow" href="http://www.elegantthemes.com/preview/eVid/" target="_blank">Theme Demo</a></p>
<h3>Fresh Trailers</h3>
<p><img src="/blogimages/10videowp1/09fresh.gif" alt="" /></p>
<p>Fresh Trailers is created and designed to let you share and review you favorite videos.</p>
<p><a rel="nofollow" href="http://www.freshlimesoda.us/wp-themes/freshtrailers/" target="_blank">Buy</a> | <a rel="nofollow" href="http://www.freshlimesoda.us/trailers/" target="_blank">Theme Demo</a></p>
<h3>Video Elements</h3>
<p><img src="/blogimages/10videowp1/10elem.gif" alt="" /></p>
<p>Easily publish videos with high quality thumbnails in seconds, and seamlessly blend non-video posts.</p>
<p><a rel="nofollow" href="http://www.press75.com/v4/the-video-elements-wordpress-theme/" target="_blank">Buy</a> | <a rel="nofollow" href="http://www.press75.com/v4/video-elements-theme-demo/" target="_blank">Theme Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infscripts.com/14-10-video-wordpress-themes.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>10 Dark Joomla Templates</title>
		<link>http://www.infscripts.com/10-10-dark-joomla-templates.html</link>
		<comments>http://www.infscripts.com/10-10-dark-joomla-templates.html#comments</comments>
		<pubDate>Tue, 10 Feb 2009 01:53:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Joomla Themes]]></category>

		<guid isPermaLink="false">http://www.infscripts.com/blog/?p=10</guid>
		<description><![CDATA[Ten high quality templates for Joomla with dark background colors.
1. My Portfolio

Author: Portfoilio Design &#124; Download &#124; Demo
2. Dark World

Author: Ulti Joomla &#124; Download &#124; Demo
3. Green Rays

Author: SiteGround &#124; Download &#124; Demo
4. Aqualine Noir

Author: Compass Design &#124; Demo
5. JW Getty

Author: Joomla Web &#124; Download &#124; Demo
6. Gaming Plazza

Author: Template Plazza &#124; Demo
7. Aurora

Author: Joomla [...]]]></description>
			<content:encoded><![CDATA[<p>Ten high quality templates for <a href="http://www.joomla.org/" target="_blank">Joomla</a> with dark background colors.</p>
<h3>1. My Portfolio</h3>
<p><img src="/blogimages/10joomla1/01port.gif" alt="" /></p>
<p><span id="more-10"></span>Author: <a rel="nofollow" href="http://www.portfoliodesign.org/" target="_blank">Portfoilio Design</a> | <a rel="nofollow" href="http://www.infscripts.com/download/joomla1/MyPortfolio_Joomla_1_5_x_Template.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://joomlatemplates.portfoliodesign.org/myportfolio/" target="_blank">Demo</a></p>
<h3>2. Dark World</h3>
<p><img src="/blogimages/10joomla1/02dark.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.ultijoomla.com/" target="_blank">Ulti Joomla</a> | <a rel="nofollow" href="http://www.infscripts.com/download/joomla1/uj_darkworld.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://www.joomlademos.de/home?template=uj_darkworld" target="_blank">Demo</a></p>
<h3>3. Green Rays</h3>
<p><img src="/blogimages/10joomla1/03rays.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.siteground.com/joomla-hosting/joomla-templates.htm" target="_blank">SiteGround</a> | <a rel="nofollow" href="http://www.siteground.com/order_template_download.php?tid=415&amp;download=1" target="_blank">Download</a> | <a rel="nofollow" href="http://joomla15.siteground.com/?template=siteground-j15-68" target="_blank">Demo</a></p>
<h3>4. Aqualine Noir</h3>
<p><img src="/blogimages/10joomla1/04aqua.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.compassdesigns.net/" target="_blank">Compass Design</a> | <a rel="nofollow" href="http://demotemplates.joomlashack.com/aqua_dark/" target="_blank">Demo</a></p>
<h3>5. JW Getty</h3>
<p><img src="/blogimages/10joomla1/05getty.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.joomlaweb.com" target="_blank">Joomla Web</a> | <a rel="nofollow" href="http://www.infscripts.com/download/joomla1/87fa35c6.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://joomlatemplates.bestofjoomla.com/1.5/index.php?template=jw_getty" target="_blank">Demo</a></p>
<h3>6. Gaming Plazza</h3>
<p><img src="/blogimages/10joomla1/06gaming.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.templateplazza.com/" target="_blank">Template Plazza</a> | <a rel="nofollow" href="http://demo.templateplazza.net/?template=gaming_plazza" target="_blank">Demo</a></p>
<h3>7. Aurora</h3>
<p><img src="/blogimages/10joomla1/07aurora.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.joomlajunkie.com/" target="_blank">Joomla Junkie</a> | <a rel="nofollow" href="http://www.joomlajunkie.com/templates/commercial-templates/aurora.html" target="_blank">Download</a> | <a rel="nofollow" href="http://www.joomlajunkie.com/demo/index.php?template=aurora" target="_blank">Demo</a></p>
<h3>8. Carbon 07</h3>
<p><img src="/blogimages/10joomla1/08ah.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.ah-68.de/" target="_blank">Ah 68</a> | <a rel="nofollow" href="http://www.infscripts.com/download/joomla1/carbon_07_15_1.1_unzip_first.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://xyz.ah-68.de/" target="_blank">Demo</a></p>
<h3>9. Replicant v2</h3>
<p><img src="/blogimages/10joomla1/09replic.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.rockettheme.com/" target="_blank">Rocket Theme</a> | <a rel="nofollow" href="http://www.rockettheme.com/joomla-templates/replicant2" target="_blank">Download</a> | <a rel="nofollow" href="http://demo.rockettheme.com/?template=replicant2" target="_blank">Demo</a></p>
<h3>10. PWC Music</h3>
<p><img src="/blogimages/10joomla1/10music.gif" alt="" /></p>
<p>Author: ProWebCreative | <a rel="nofollow" href="http://www.infscripts.com/download/joomla1/pwc-music.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://www.joomlademos.de/home?template=pwc-music" target="_blank">Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infscripts.com/10-10-dark-joomla-templates.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>10 Good Free phpBB3 Themes</title>
		<link>http://www.infscripts.com/5-10-good-free-phpbb3-themes.html</link>
		<comments>http://www.infscripts.com/5-10-good-free-phpbb3-themes.html#comments</comments>
		<pubDate>Sat, 13 Sep 2008 10:15:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[phpBB Themes]]></category>

		<guid isPermaLink="false">http://www.infscripts.com/blog/?p=5</guid>
		<description><![CDATA[Ten usable and great looking templates for your phpBB3 forum.
1. Serenity

Author: STSoftware &#124; Download &#124; Demo
2. bo2Soft

Author: Bozuntu &#124; Download &#124; Demo
3. DarkFantasy

Author: Gamexe.net &#124; Download &#124; Demo
4. N.Design

Author: Midnight Phoenix &#124; Download &#124; Demo
5. RedSilver

Author: devppl.com &#124; Download &#124; Demo
6. Proglass

Author: Unknown &#124; Download &#124; Demo
7. Avalon

Author: STSoftware &#124; Download &#124; Demo
8. Xabb Green

Author: [...]]]></description>
			<content:encoded><![CDATA[<p>Ten usable and great looking templates for your <a rel="nofollow" href="http://www.phpbb.com/" target="_blank">phpBB3</a> forum.</p>
<h3>1. Serenity</h3>
<p><img src="/blogimages/10phpbb1/serenity.gif" alt="" /></p>
<p><span id="more-5"></span>Author: <a rel="nofollow" href="http://www.stsoftware.biz/index.html" target="_blank">STSoftware</a> | <a rel="nofollow" href="http://www.stsoftware.biz/free_phpbb3_styles.html" target="_blank">Download</a> | <a rel="nofollow" href="http://www.stsoftware.biz/phpbb3/index.php?style=serenity" target="_blank">Demo</a></p>
<h3>2. bo2Soft</h3>
<p><img src="/blogimages/10phpbb1/bo2soft.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.bozuntu.org/" target="_blank">Bozuntu</a> | <a rel="nofollow" href="http://www.bozuntu.org/" target="_blank">Download</a> | <a rel="nofollow" href="http://demo.phpbb3styles.net/index.php?style=193" target="_blank">Demo</a></p>
<h3>3. DarkFantasy</h3>
<p><img src="/blogimages/10phpbb1/darkfantasy.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.gamexe.net/" target="_blank">Gamexe.net</a> | <a rel="nofollow" href="http://www.gamexe.net/forum/viewtopic.php?f=1&amp;t=1229" target="_blank">Download</a> | <a rel="nofollow" href="http://www.gamexe.net/forum/viewtopic.php?f=1&amp;t=1229&amp;style=4" target="_blank">Demo</a></p>
<h3>4. N.Design</h3>
<p><img src="/blogimages/10phpbb1/ndesign.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.themidnightphoenix.org/" target="_blank">Midnight Phoenix</a> | <a rel="nofollow" href="http://www.themidnightphoenix.org/resources/phpbb-skins/ndesign/" target="_blank">Download</a> | <a rel="nofollow" href="http://v3-demo.themidnightphoenix.org/index.php?style=3" target="_blank">Demo</a></p>
<h3>5. RedSilver</h3>
<p><img src="/blogimages/10phpbb1/redsilver.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.devppl.com/" target="_blank">devppl.com</a> | <a rel="nofollow" href="http://www.infscripts.com/download/phpbb/redsilver_c.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://demo.phpbb3styles.net/RedSilver_C" target="_blank">Demo</a></p>
<h3>6. Proglass</h3>
<p><img src="/blogimages/10phpbb1/proglass.gif" alt="" /></p>
<p>Author: Unknown | <a rel="nofollow" href="http://www.infscripts.com/download/phpbb/proglass.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://demo.phpbb3styles.net/proglass" target="_blank">Demo</a></p>
<h3>7. Avalon</h3>
<p><img src="/blogimages/10phpbb1/avalon.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.stsoftware.biz/index.html" target="_blank">STSoftware</a> | <a rel="nofollow" href="http://www.stsoftware.biz/free_phpbb3_styles.html" target="_blank">Download</a> | <a rel="nofollow" href="http://www.stsoftware.biz/phpbb3/index.php?style=avalon" target="_blank">Demo</a></p>
<h3>8. Xabb Green</h3>
<p><img src="/blogimages/10phpbb1/xabb.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.phpbb-styles.com/style-xabb-green.html" target="_blank">PhpBB Styles</a> | <a rel="nofollow" href="http://www.phpbb-styles.com/style-xabb-green.html" target="_blank">Download</a> | <a rel="nofollow" href="http://www.forumstyles.de/demo/phpBB2/index.php?s=283" target="_blank">Demo</a></p>
<h3>9. Free PHP3 Style</h3>
<p><img src="/blogimages/10phpbb1/free-phpbb3-style.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.sarkis-webdesign.com/free-phpbb3-styles.html" target="_blank">Sarkis Webdesign</a> | <a rel="nofollow" href="http://www.sarkis-webdesign.com/free-phpbb3-styles.html" target="_blank">Download</a> | <a rel="nofollow" href="http://freelancewebmarket.biz/phpbb3-forums/forum-144.html" target="_blank">Demo</a></p>
<h3>10. Minimalistic</h3>
<p><img src="/blogimages/10phpbb1/minimalisitic.gif" alt="" /></p>
<p>Author: <a rel="nofollow" href="http://www.devppl.com/" target="_blank">devppl.com</a> | <a rel="nofollow" href="http://www.infscripts.com/download/phpbb/minimalistic.zip" target="_blank">Download</a> | <a rel="nofollow" href="http://demo.phpbb3styles.net/Minimalistic" target="_blank">Demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.infscripts.com/5-10-good-free-phpbb3-themes.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Welcome!</title>
		<link>http://www.infscripts.com/3-welcome.html</link>
		<comments>http://www.infscripts.com/3-welcome.html#comments</comments>
		<pubDate>Tue, 01 Jul 2008 00:53:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.infscripts.com/blog/?p=3</guid>
		<description><![CDATA[Weclome to the blog!
]]></description>
			<content:encoded><![CDATA[<p>Weclome to the blog!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infscripts.com/3-welcome.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

