<?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>The Tags Your Life Needs &#187; joomla</title>
	<atom:link href="http://www.tagtile.com/tag/joomla/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tagtile.com</link>
	<description>Providing What Your Net Life Needs</description>
	<lastBuildDate>Sun, 01 Nov 2009 08:39:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Joomla Content Title anywhere inside template</title>
		<link>http://www.tagtile.com/joomla/joomla-content-title-anywhere-inside-template.html</link>
		<comments>http://www.tagtile.com/joomla/joomla-content-title-anywhere-inside-template.html#comments</comments>
		<pubDate>Mon, 13 Apr 2009 02:44:41 +0000</pubDate>
		<dc:creator>vrajesh</dc:creator>
				<category><![CDATA[joomla]]></category>
		<category><![CDATA[content title]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[trick]]></category>

		<guid isPermaLink="false">http://www.tagtile.com/?p=167</guid>
		<description><![CDATA[




&#60;?php
$document =&#38; JFactory::getDocument();
echo $document-&#62;getTitle();
?&#62;
This piece of code will generate content title anywhere you want in your joomla template.
]]></description>
			<content:encoded><![CDATA[<!-- Easy AdSense V2.82 -->
<!-- Post[count: 2] -->
<div class="ezAdsense adsense adsense-leadin" style="float:left;margin:5px;"><script type="text/javascript"><!--
google_ad_client = "pub-8708215278728775";
/* tagTileBox1Text */
google_ad_slot = "7794186857";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div><p>&lt;?php</p>
<p>$document =&amp; JFactory::getDocument();<br />
echo $document-&gt;getTitle();</p>
<p>?&gt;</p>
<p>This piece of code will generate content title anywhere you want in your joomla template.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tagtile.com/joomla/joomla-content-title-anywhere-inside-template.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Making Joomla h3 Module title double styled or double colored using JQuery</title>
		<link>http://www.tagtile.com/css/making-joomla-h3-module-title-double-styled-or-double-colored-using-jquery.html</link>
		<comments>http://www.tagtile.com/css/making-joomla-h3-module-title-double-styled-or-double-colored-using-jquery.html#comments</comments>
		<pubDate>Tue, 07 Apr 2009 13:26:19 +0000</pubDate>
		<dc:creator>vrajesh</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[h3]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.tagtile.com/?p=160</guid>
		<description><![CDATA[




In Joomla, you know that words that the module titles are presented with are the h3 tags.  Generally they are designed with single background image or any background color with single one color for title texts.
I have used jquery to make the h3 tags multiple styled.  One color or style for first word and another [...]]]></description>
			<content:encoded><![CDATA[<p>In Joomla, you know that words that the module titles are presented with are the h3 tags.  Generally they are designed with single background image or any background color with single one color for title texts.</p>
<p>I have used jquery to make the h3 tags multiple styled.  One color or style for first word and another set of style for remaining words.   So, it looks better than normal h3 tag styles.</p>
<p>You need to add the following code inside head tag of the index.php file of template.  Also you need to include the jquery base classes to make the things happen in right way.</p>
<p>Firs i would like to tell that i am not a pro coder.  I am just a designer with intermediate level of script knowledge.</p>
<p>Ok, here is what the code does.  Once the document is loaded, the script searches for &#8220;sideBar&#8221; div inside page(you can change this tag to anything).  The &#8220;each&#8221; keyword is used to rotate inside available h3 tags manipulation.  So if there are more than 1 h3 tags, it will work on all of them separately.  The &#8220;ft&#8221; variables picks all the text including html tags from the h3 text.  the &#8220;cc&#8221; variable searches for first space character.  Suppose if it contains any space character, it is assumed that the h3 text is of more than 1 word and it enters into &#8220;if&#8221; condition.  The &#8220;fword&#8221; variable is filled with first word.  and &#8220;otherwords&#8221; are filled with words that is available after the first word.</p>
<p>Then i merge the words by adding &#8220;newh3Style&#8221; span tag with &#8220;otherwords&#8221;.  That is it.</p>
<p>Please note that again, i am not a coder.  I know there will be better code or optimized code than this.  If you have found any please reply them in comment.  Your comments can help me improve the code.</p>
<p><a href="http://www.tagtile.com/content-html/joomla-h3.html" target="_blank">Demo Page</a></p>
<p><strong>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
jQuery(document).ready<br />
(<br />
function()<br />
{<br />
$(&#8221;#sideBar h3&#8243;).each(function(i)<br />
{<br />
var ft =($(this).html());<br />
var cc = ft.indexOf(&#8221; &#8220;);<br />
if (cc&gt;0)<br />
{<br />
var fword = ft.slice(0,cc+1);<br />
var otherwords = ft.slice(cc+1);<br />
$(this).html(fword+&#8221;&lt;span class=&#8217;newh3Style&#8217;&gt;&#8221;+otherwords+&#8221;&lt;\/span&gt;&#8221;);<br />
}<br />
}); }</strong></p>
<p><strong>);<br />
&lt;/script&gt;</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tagtile.com/css/making-joomla-h3-module-title-double-styled-or-double-colored-using-jquery.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hire me, if you are in need of Wordpress or Joomla Grapics Services</title>
		<link>http://www.tagtile.com/uncategorized/hire-me-if-you-are-in-need-of-wordpress-or-joomla-grapics-services.html</link>
		<comments>http://www.tagtile.com/uncategorized/hire-me-if-you-are-in-need-of-wordpress-or-joomla-grapics-services.html#comments</comments>
		<pubDate>Thu, 18 Dec 2008 18:25:32 +0000</pubDate>
		<dc:creator>vrajesh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.tagtile.com/?p=94</guid>
		<description><![CDATA[Hi all, thanks for visiting my site.  As a webmaster of this site, i take the opportunity of your visit for my freelance career.
Please hire me $9 per hour if you have any work related to the following things,

Modifying your theme header or css color
Installing components and modules and modifying their css and graphic things [...]]]></description>
			<content:encoded><![CDATA[<p>Hi all, thanks for visiting my site.  As a webmaster of this site, i take the opportunity of your visit for my freelance career.</p>
<p>Please hire me $9 per hour if you have any work related to the following things,</p>
<ul>
<li>Modifying your theme header or css color</li>
<li>Installing components and modules and modifying their css and graphic things for front end. (only front end, because, i am not a coder)</li>
<li>Installing templates</li>
<li>Assigning modules for each page or varied display options.</li>
<li>Assigning ad codes in Joomla or wordpress widgets or modules.</li>
<li>Resizing your large images and cropping it to fit for the web. I still see many sites are not worried in resizing the image physically. I see the images are resized with width and height options of img tag only.</li>
<li>Insert youtube or any othe video site&#8217;s &#8220;embed code&#8221; in your site.</li>
<li>I also do XHTML , i can create tableless layouts and they are validatable for xhtml and css.</li>
<li>Converting your 1.0 Joomla template into 1.5 , I can do all basic conversions except the dropdown menu and any other 3rd party things that depends 1.0 code.</li>
<li>Taking any GPL templates and modifying to better colors or desired colors and legal stock images(yes i have subscription) to create your site.</li>
<li>Increasing width of main area or side bars or modules</li>
<li>Increasing whole width of site.</li>
<li>Converting your dvd or cd videos to FLV format to play on the web. Of course, i can download 300MB of video file in 2 to 3 hrs. we can negotiate honest fee for the time taken.</li>
<li>I can extract MP4 video from youtube when you want high quality video for your PPT presentation or any other purpose.</li>
<li>Inserting &#8220;youtube videos into wordpress&#8221; for any keyword. (no comments are imported). They get automatically imported as each post, so to build nice video blog in a day. Yes for any keywords. currently works for youtube only. Not my script. but a 3rd party script which is open source too.</li>
<li>Again in Wordpress, i can modify a fix little display things in sidebars like adding tags or code for SEO purpose if any.</li>
<li>I can create header images also. Although to be honest, i am not creative, i can create better headers without compromising on colors or size.</li>
<li>I have little knowledge of SEO and i am aware of google keyword tool, spyfu (a little) and SEMRush better.</li>
<li>I honestly believe WP is faster than Joomla in exposing to search engines and i always prefer that for people who want to build their website for money.</li>
<li>I shall add more things that i can do as i remember my skills,</li>
</ul>
<ul>
<li>I am basically a designer with good knowledge of web , Joomla and Wordpress.  Please hire me.</li>
</ul>
<p>Thanks for reading my list,</p>
<p>Kindly hire me</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tagtile.com/uncategorized/hire-me-if-you-are-in-need-of-wordpress-or-joomla-grapics-services.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla drop down menus and different styles</title>
		<link>http://www.tagtile.com/css/joomla-drop-down-menus-and-different-styles.html</link>
		<comments>http://www.tagtile.com/css/joomla-drop-down-menus-and-different-styles.html#comments</comments>
		<pubDate>Tue, 16 Sep 2008 12:52:33 +0000</pubDate>
		<dc:creator>vrajesh</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[drop line]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[rokmoomenu]]></category>
		<category><![CDATA[split menu]]></category>
		<category><![CDATA[suckerfish]]></category>

		<guid isPermaLink="false">http://www.tagtile.com/?p=15</guid>
		<description><![CDATA[well, better than telling there are lots of menu styles i thought i could post some of the links here.&#160; so, friends you can enjoy the power of Joomla.
1.&#160; Suckerfish style menu, Just hover on the menus , It is a standard menu system around the world and also in Joomla.&#160; This is called suckerfish.
http://demotemplates.Joomlashack.com/weblogic/index.php?menutype=suckerfish
There [...]]]></description>
			<content:encoded><![CDATA[<p>well, better than telling there are lots of menu styles i thought i could post some of the links here.&nbsp; so, friends you can enjoy the power of Joomla.</p>
<p>1.&nbsp; Suckerfish style menu, Just hover on the menus , It is a standard menu system around the world and also in Joomla.&nbsp; This is called suckerfish.</p>
<p><a href="http://demotemplates.Joomlashack.com/weblogic/index.php?menutype=suckerfish" mce_href="http://demotemplates.Joomlashack.com/weblogic/index.php?menutype=suckerfish" target="_blank">http://demotemplates.Joomlashack.com/weblogic/index.php?menutype=suckerfish</a></p>
<p>There can be any number of childs for this suckerfish.&nbsp; But i have used until 3rd level.&nbsp; Well ,&nbsp; i think user will become tired of going to lots and lots of child menu item.</p>
<p>2.&nbsp; Drop Line Menu Style</p>
<p><a href="http://demotemplates.Joomlashack.com/weblogic/index.php?option=com_frontpage&amp;Itemid=1&amp;menutype=dropline" mce_href="http://demotemplates.Joomlashack.com/weblogic/index.php?option=com_frontpage&amp;Itemid=1&amp;menutype=dropline">http://demotemplates.Joomlashack.com/weblogic/index.php?option=com_frontpage&amp;Itemid=1&amp;menutype=dropline</a></p>
<p>This is somewhat technically similar to suckersish, however, it displays sub items next to parent menu border generally.</p>
<p>I think only one child can be used for this style.</p>
<p>3.&nbsp; RokMoomenu</p>
<p><a href="http://demo.rockettheme.com/sep08/index.php?option=com_content&amp;task=view&amp;id=24&amp;Itemid=38&amp;mtype=moomenu" mce_href="http://demo.rockettheme.com/sep08/index.php?option=com_content&amp;task=view&amp;id=24&amp;Itemid=38&amp;mtype=moomenu" target="_blank">http://demo.rockettheme.com/sep08/index.php?option=com_content&amp;task=view&amp;id=24&amp;Itemid=38&amp;mtype=moomenu</a></p>
<p>This style of menu is based on Mootools javascript framework.&nbsp; If you think you want to make a nice user interface, better SEO and lots of child menus, then moomenus are generally nicer.</p>
<p>Basically Mootools are already included inside Joomla.&nbsp; So, the size of Joomla template is also limited in size.</p>
<p>4.&nbsp; SplitMenu</p>
<p><a href="http://demo.rockettheme.com/sep08/index.php?option=com_content&amp;task=view&amp;id=24&amp;Itemid=38&amp;mtype=splitmenu" mce_href="http://demo.rockettheme.com/sep08/index.php?option=com_content&amp;task=view&amp;id=24&amp;Itemid=38&amp;mtype=splitmenu" target="_blank">http://demo.rockettheme.com/sep08/index.php?option=com_content&amp;task=view&amp;id=24&amp;Itemid=38&amp;mtype=splitmenu</a></p>
<p>Split menu is very useful particularly inside Joomla cms.&nbsp; The parent menu items will stay on top as usual.&nbsp; The child menu items will get displayed on right side of template generally.&nbsp; Of course, you can arrange them on left side too.&nbsp; Only thing is they are splitted.</p>
<p>It is very useful when you want to manage menu items easily.&nbsp; Because, when you click on the child menu, you can keep the active position for left side menus as well as top menu.&nbsp; It is easy, effective and user navigation friendly.</p>
<p>5.&nbsp; Menu styles from Joomlart</p>
<p>Without any doubt , Joomlart has been dominating the market with very nice templates and styles of course. They are providing lots of menu styles, I give some of them here,</p>
<p>JA Moo Menu<br />
<a href="http://template15.Joomlart.com/ja_pyrite/?ja_menu=moo" mce_href="http://template15.Joomlart.com/ja_pyrite/?ja_menu=moo" target="_blank">http://template15.Joomlart.com/ja_pyrite/?ja_menu=moo</a></p>
<p>This is a Recent work from Joomlart (September 2008)&nbsp; Which works on the base of mootools.</p>
<p>JA suckerfish<br />
<a href="http://template15.Joomlart.com/ja_pyrite/?ja_menu=css" mce_href="http://template15.Joomlart.com/ja_pyrite/?ja_menu=css" target="_blank">http://template15.Joomlart.com/ja_pyrite/?ja_menu=css</a></p>
<p>There are other types of menus there.&nbsp; You can browse to find more from that template itself.</p>
<p>6.&nbsp; Here comes a platinum style , that is called yoomenu</p>
<p><a href="http://demo.yootheme.com/sep08/index.php?option=com_content&amp;view=article&amp;id=68&amp;Itemid=74" mce_href="http://demo.yootheme.com/sep08/index.php?option=com_content&amp;view=article&amp;id=68&amp;Itemid=74">http://demo.yootheme.com/sep08/index.php?option=com_content&amp;view=article&amp;id=68&amp;Itemid=74</a></p>
<p>I am sure you will get surprised too see this style.&nbsp; The style works on all browsers surprisingly including ie 6.&nbsp; The advantages are many.&nbsp; You can assign colors, icons , transitions styles. Wow they are cool.</p>
<p>Ok, We have seen different styles of menus.&nbsp; Most of the menus seem to be compatible with the template they provide.&nbsp; However, as a user and owner of website, you may want to use your own template or style and you may want to use these menus inside your website.&nbsp; Of course, it is possible.&nbsp; You can buy the template and use it in your own template.&nbsp; I hope that does not violate the terms of template clubs generally.&nbsp; Because you are paying them for that stuff.&nbsp; Else, you can even ask them on this thing.&nbsp; I mean website here as Joomla CMS based websites.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tagtile.com/css/joomla-drop-down-menus-and-different-styles.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
