<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>

<channel>
	<title>Softinquiry &#187; tutorials</title>
	<atom:link href="http://softinquiry.com/category/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://softinquiry.com</link>
	<description>A blog where I share my knowledge about software</description>
	<lastBuildDate>Wed, 11 Aug 2010 11:51:45 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/us/</creativeCommons:license>
		<item>
		<title>Integrate AdSense into phpbb3 &#8211; part 2</title>
		<link>http://softinquiry.com/integrate-adsense-into-phpbb3-part-2.html</link>
		<comments>http://softinquiry.com/integrate-adsense-into-phpbb3-part-2.html#comments</comments>
		<pubDate>Fri, 11 Apr 2008 19:26:03 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[phpbb3]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[integrate]]></category>
		<category><![CDATA[subsilver2]]></category>

		<guid isPermaLink="false">http://softinquiry.com/?p=112</guid>
		<description><![CDATA[In my last post i tried to cover the basics of the integration process as far as the prosilver theme and all the other prosilver based themes out there. Basic styling and some basic code insertion. I promised that i would post a tutorial (and many folks asked me to) regarding the integration of AdSense [...]]]></description>
			<content:encoded><![CDATA[<p>In my <a title="last post" href="http://softinquiry.com/integrate-adsense-into-phpbb3.html" target="_blank">last post</a> i tried to cover the basics of the integration process as far as the prosilver theme and all the other prosilver based themes out there. Basic styling and some basic code insertion. I promised that i would post a tutorial (and many folks asked me to) regarding the integration of AdSense (or other ads) into subsilver2 based themes, so here it goes.</p>
<p>This time i will keep things related to CSS much more simpler (almost non-existent) as i will make use of default classes. Instead of using an ad block that fits in relatively neat i will give an example of using a table. The visual effect will be almost the same. So feel free to play with some CSS and HTML code (why not even with some PHP as you might want to implement a post counter or other useful queries) to obtain a seamless integration of what i will try to cover here. Practically all the spots where ads will be placed will remain the same as for a prosilver based theme so this time i won&#8217;t post screenshots. If you want to make an ideea of how things look check out the <a title="other post" href="http://softinquiry.com/integrate-adsense-into-phpbb3.html" target="_blank">other post</a>. So with no further delays here comes the actual guide.</p>
<p><strong>Displaying ads one the <em>index</em> page</strong></p>
<ol>
<li>Open <em>index_body.html</em> and find <em>&lt;!– INCLUDE forumlist_body.html –&gt;</em></li>
<li>BEFORE it add the following code (this will create an ad block just before the forum list starts):

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;table width=&quot;100%&quot; cellspacing=&quot;0&quot;&gt;&lt;tr&gt;&lt;td class=&quot;cat&quot;&gt;&lt;h4&gt;Ads&lt;/h4&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;table class=&quot;tablebg&quot; width=&quot;100%&quot; cellspacing=&quot;0&quot;&gt;
&lt;tr&gt;
 &lt;td&gt;
   &lt;center&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-xxxx&quot;;
/* 200x90 */
google_ad_slot = &quot;xxxxx&quot;;
google_ad_width = 200;
google_ad_height = 90;
google_color_border = &quot;A9B8C2&quot;;
google_color_bg = &quot;A9B8C2&quot;;
google_color_link = &quot;000000&quot;;
google_color_url = &quot;000000&quot;;
google_color_text = &quot;000000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;
&lt;/center&gt;
&lt;/td&gt;
 &lt;td&gt;
  &lt;center&gt;
   &lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-xxxx&quot;;
/* 728x90 */
google_ad_slot = &quot;xxxx&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_color_border = &quot;A9B8C2&quot;;
google_color_bg = &quot;A9B8C2&quot;;
google_color_link = &quot;000000&quot;;
google_color_url = &quot;000000&quot;;
google_color_text = &quot;000000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;
&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;</pre></div></div>

</li>
<li>If you want to display the ad block just after the forum list ends paste the same code AFTER <em>&lt;!– INCLUDE forumlist_body.html –&gt;</em></li>
</ol>
<p><strong>Displaying ads one the <em>viewforum</em> page</strong></p>
<ol>
<li>Open <em>viewforum_body.html</em> and find <em>&lt;!– IF not S_DISPLAY_ACTIVE and (S_IS_POSTABLE or .topicrow) –&gt;</em></li>
<li>Before it add the SAME code as for the index page.</li>
<li>If you want to display the ad block just after the forum list ends paste the same code BEFORE <em>&lt;!– IF S_DISPLAY_POST_INFO or TOTAL_TOPICS –&gt;</em></li>
</ol>
<p><strong>Displaying ads one the <em>viewtopic</em> page</strong></p>
<ol>
<li>Open <em>viewtopic_body.html</em> and find the <em>first appearance</em> of the following code

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;table class=&quot;tablebg&quot; width=&quot;100%&quot; cellspacing=&quot;1&quot;&gt;</pre></div></div>

</li>
<li>Before it add the SAME code as for the index page.</li>
<li>If you want to display the ad block just after the topic list ends past the same code BEFORE the <em>second appearance</em> of the following code (it only appears three times)

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;table width=&quot;100%&quot; cellspacing=&quot;1&quot;&gt;</pre></div></div>

</li>
<li>If you want to display ads before the content of the <em>first post</em> find the following code

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;postbody&quot;&gt;{postrow.MESSAGE}&lt;/div&gt;</pre></div></div>

<p>and BEFORE it add the following</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;!-- IF postrow.S_FIRST_ROW --&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-xxxx&quot;;
/* 728x15 */
google_ad_slot = &quot;xxxx&quot;;
google_ad_width = 728;
google_ad_height = 15;
google_color_border = &quot;ECECEC&quot;;
google_color_bg = &quot;ECECEC&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_url = &quot;006699&quot;;
google_color_text = &quot;000000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;
&lt;br&gt;&lt;br&gt;
&lt;!-- ENDIF --&gt;</pre></div></div>

</li>
<li>If you want to display an ad block after the content of the first post AFTER

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;postbody&quot;&gt;{postrow.MESSAGE}&lt;/div&gt;</pre></div></div>

<p>add the following code</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;!-- IF postrow.S_FIRST_ROW --&gt;
&lt;br&gt;&lt;br&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-xxxx&quot;;
/* 728x90 */
google_ad_slot = &quot;xxxx&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_color_border = &quot;ECECEC&quot;;
google_color_bg = &quot;ECECEC&quot;;
google_color_link = &quot;FFFFFF&quot;;
google_color_url = &quot;006699&quot;;
google_color_text = &quot;000000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;
&lt;br&gt;&lt;br&gt;
&lt;!-- ENDIF --&gt;</pre></div></div>

</li>
</ol>
<p><strong>Displaying ads one the <em>search results</em> page</strong></p>
<ol>
<li>Open <em>search_results.html</em> and find <em>&lt;!– IF S_SHOW_TOPICS –&gt;</em></li>
<li>Before it add the SAME code as for the index page.</li>
<li>If you want to add the ad block just after the search block ends add the SAME code BEFORE the following code

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;gensmall&quot; style=&quot;float: {S_CONTENT_FLOW_BEGIN};&quot;&gt;</pre></div></div>

</li>
</ol>
<p>Well, that covers pretty much the basics of an AdSense integration in a subilsver2 based theme for phpbb3. If you have any questions feel free to leave me a comment.</p>
<img src="http://softinquiry.com/?ak_action=api_record_view&id=112&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://softinquiry.com/integrate-adsense-into-phpbb3-part-2.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>Integrate AdSense into phpbb3</title>
		<link>http://softinquiry.com/integrate-adsense-into-phpbb3.html</link>
		<comments>http://softinquiry.com/integrate-adsense-into-phpbb3.html#comments</comments>
		<pubDate>Fri, 04 Apr 2008 14:08:51 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[phpbb3]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[prosilver]]></category>

		<guid isPermaLink="false">http://softinquiry.com/?p=81</guid>
		<description><![CDATA[A very easy to follow tutorial that will show you how you can integrate Google AdSense ads into your phpbb3 based forum so that you can generate some revenue. This tutorial will help you integrate ads on the index page, viewforum page, viewtopic page, search results page and in the first post.]]></description>
			<content:encoded><![CDATA[<p>If you want to monetize your phpbb3 based forum and want to display some Google AdSense ads go ahead and read this simple tutorial. The following method can be applied on any prosilver based style. You can edit the files via your ACP or edit and upload them via FTP. I will post another tutorial showing you how to integrate AdSense into a subsilver2 based style. This tutorial covers the basic process of implementation but feel free to customize the code as you please. </p>
<p>Don&#8217;t forget to fill in your Google AdSense ID. Also you can place any kind of ads not just AdSense ads, so it&#8217;s up to you how your forum will look as there are no limits on customizing.</p>
<p>I suggest that you create file backups before you proceed, just in case.</p>
<p><strong>Setting up the styling aspects.</strong></p>
<ol>
<li>Navigate to your style files <em>/styles/stylename/theme/</em> and open <em>stylesheet.css</em>.</li>
<li>At the end, add the following code

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #a1a100;">@import url(&quot;adsense.css&quot;);</span></pre></div></div>

</li>
<li>Create a CSS file and add the following code to it:</li>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">a body <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">max-width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1024px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
ul<span style="color: #6666ff;">.forums1</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#cddeee</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
li<span style="color: #6666ff;">.row1</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">border-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#FFFFFF</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
dd<span style="color: #6666ff;">.mali</span> span <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
dd<span style="color: #6666ff;">.veliki</span> span <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<li>Name the CSS file <em>adsense.css</em> and save it to <em>/styles/stylename/theme</em></li>
</ol>
<p><strong>Displaying ads one the index page.</strong><br />
<span class="caption-img-right"><a href="http://softinquiry.com/wp-content/uploads/2008/04/index.png"><img src="http://softinquiry.com/wp-content/uploads/2008/04/index-150x150.png" alt="img_alt"></a><em>AdSense on the index page-top</em></span></p>
<ol>
<li>Open <em>index_body.html</em> and find <em>&lt;!&#8211; INCLUDE forumlist_body.html &#8211;&gt;</em></li>
<li>BEFORE it add the following code (this will create an ad block just before the forum list starts):

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;forabg&quot;&gt;
&lt;div class=&quot;inner&quot;&gt;&lt;span class=&quot;corners-top&quot;&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;
&lt;ul class=&quot;topiclist&quot;&gt;
&lt;li class=&quot;header&quot;&gt;
&lt;dl class=&quot;icon&quot;&gt;
&lt;dt&gt;Ads&lt;/dt&gt;
&lt;/dl&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;ul class=&quot;topiclist forums1&quot;&gt;
&lt;li class=&quot;row1&quot;&gt;
&lt;dl class=&quot;icon1&quot;&gt;
&lt;dd class=&quot;mali&quot;&gt;&lt;span&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-XXX&quot;;
google_ad_width = 200;
google_ad_height = 90;
google_ad_format = &quot;200x90_0ads_al&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;cddeee&quot;;
google_color_bg = &quot;cddeee&quot;;
google_color_link = &quot;10508b&quot;;
google_color_text = &quot;4a5d73&quot;;
google_color_url = &quot;ac0000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;
&lt;/span&gt;&lt;/dd&gt;
&lt;dd class=&quot;veliki&quot;&gt;&lt;span&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-XXX&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_ad_format = &quot;728x90_as&quot;;
google_ad_type = &quot;text_image&quot;;
google_ad_channel = &quot;&quot;;
google_color_border = &quot;cddeee&quot;;
google_color_bg = &quot;cddeee&quot;;
google_color_link = &quot;10508b&quot;;
google_color_text = &quot;4a5d73&quot;;
google_color_url = &quot;ac0000&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;
&lt;/span&gt;&lt;/dd&gt;
&lt;/dl&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;span class=&quot;corners-bottom&quot;&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;</pre></div></div>

</li>
<li>If you want to display the ad block just after the forum list ends paste the same code AFTER <em>&lt;!&#8211; INCLUDE forumlist_body.html &#8211;&gt;</em></li>
</ol>
<p><strong>Displaying ads one the <em>viewforum</em> page.</strong><br />
<span class="caption-img-right"><a href="http://softinquiry.com/wp-content/uploads/2008/04/viewforum.png"><img src="http://softinquiry.com/wp-content/uploads/2008/04/viewforum-150x150.png" alt="img_alt"></a><em>AdSense on the viewforum page</em></span></p>
<ol>
<li>Open <em>viewforum_body.html</em> and find <em>&lt;!&#8211; INCLUDE forumlist_body.html &#8211;&gt;</em></li>
<li>Before it add the SAME code as for the index page.</li>
<li>If you want to display the ad block just after the forum list ends paste the same code AFTER <em>&lt;!&#8211; INCLUDE forumlist_body.html &#8211;&gt;</em></li>
<ul>If you want to display the ad block after every forum block (though i don&#8217;t really recommend it if you have small forum blocks) find <em>&lt;!&#8211; IF topicrow.S_FIRST_ROW or not topicrow.S_TOPIC_TYPE_SWITCH &#8211;&gt;</em> and AFTER it copy the SAME code.<br />
Find <em>&lt;!&#8211; IF topicrow.S_LAST_ROW &#8211;&gt;</em> and after (just before <em>&lt;!&#8211; ENDIF &#8211;&gt;</em>)</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;/ul&gt;
 &lt;span class=&quot;corners-bottom&quot;&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;</pre></div></div>

<p>paste the same code.
</ul>
</ol>
<p><strong>Displaying ads one the <em>viewtopic</em> page.</strong><br />
<span class="caption-img-right"><a href="http://softinquiry.com/wp-content/uploads/2008/04/viewtopic.png"><img src="http://softinquiry.com/wp-content/uploads/2008/04/viewtopic-150x150.png" alt="img_alt"></a><em>AdSense on the viewtopic page</em></span></p>
<ol>
<li>Open <em>viewtopic_body.html</em> and find <em>&lt;!&#8211; BEGIN postrow &#8211;&gt;</em></li>
<li>Before it add the SAME code as for the index page.</li>
<li>If you want to display the ad block just after the topic list ends past the same code AFTER <em>&lt;!&#8211; BEGIN postrow &#8211;&gt;</em></li>
<li>If you want to display ads in the first post find

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;content&quot;&gt;{postrow.MESSAGE}&lt;/div&gt;</pre></div></div>

<p>and BEFORE it add the following code</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-xxx&quot;;
/* 728x15 */
google_ad_slot = &quot;xxxx&quot;;
google_ad_width = 728;
google_ad_height = 15;
google_color_border = &quot;E1EBF2&quot;;
google_color_bg = &quot;E1EBF2&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;</pre></div></div>

</li>
<li>If you want to display an ad block after the content of the first post AFTER

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;content&quot;&gt;{postrow.MESSAGE}&lt;/div&gt;</pre></div></div>

<p> add the following code</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-xxx&quot;;
/* 728x90 */
google_ad_slot = &quot;3092398785&quot;;
google_ad_width = 728;
google_ad_height = 90;
google_color_border = &quot;E1EBF2&quot;;
google_color_bg = &quot;E1EBF2&quot;;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;</pre></div></div>

</li>
</ol>
<p><strong>Displaying ads one the <em>search results</em> page.</strong><br />
<span class="caption-img-right"><a href="http://softinquiry.com/wp-content/uploads/2008/04/search.png"><img src="http://softinquiry.com/wp-content/uploads/2008/04/search-150x150.png" alt="img_alt"></a><em>AdSense on the search page</em></span></p>
<ol>
<li>Open <em>search_results.html</em> and find <em>&lt;!&#8211; ENDIF &#8211;&gt;<br />
&lt;!&#8211; IF S_SHOW_TOPICS &#8211;&gt;</em></li>
<li>Before it add the SAME code as for the index page.</li>
<li>If you want to add the ad block just after the search block ends add the SAME code AFTER it.</li>
</ol>
<p>If you encounter problems with this method please give me a notice.<br />
Also, if you want to see a live example check out <a href="http://www.gamelink.ro/forum" target="_blank">this</a> forum.</p>
<img src="http://softinquiry.com/?ak_action=api_record_view&id=81&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://softinquiry.com/integrate-adsense-into-phpbb3.html/feed</wfw:commentRss>
		<slash:comments>25</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>Style your MyBlogLog Recent Readers Widget</title>
		<link>http://softinquiry.com/style-your-mybloglog-recent-readers-widget.html</link>
		<comments>http://softinquiry.com/style-your-mybloglog-recent-readers-widget.html#comments</comments>
		<pubDate>Wed, 27 Feb 2008 16:04:33 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[mybloglog]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://softinquiry.com/style-your-mybloglog-recent-readers-widget.html</guid>
		<description><![CDATA[If you prefer the old version of the Recent Readers widget and you are not happy with the default customization options offered by MyBlogLog, you can take it further and style your widget as you please. Unfortunately no matter what colors you choose if someone that isn&#8217;t logged in his MyBlogLog account views your page [...]]]></description>
			<content:encoded><![CDATA[<p>If you prefer the old version of the Recent Readers widget and you are not happy with the default customization options offered by MyBlogLog, you can take it further and style your widget as you please. Unfortunately no matter what colors you choose if someone that isn&#8217;t logged in his MyBlogLog account views your page that person will see the text &#8220;You! Join Our Community&#8221; on a white background and if your widget is not positioned in an area that has a white background<br />
it looks very nasty. On top of that you may want to customise your text link decoration, size of the images, borders, etc.</p>
<p>Instead of overwriting the declarations in the js generated by MyBlogLog i advise you to strip the code by deleting the variables related to colors:</p>
<ul>
<li>c_color_bottom_bg</li>
<li>c_color_link</li>
<li>c_color_link_bg</li>
<li>c_color_heading</li>
<li>c_color_heading_bg</li>
</ul>
<p>I&#8217;m not going to explain which variable does what because that&#8217;s irrelevant and anyway we will remove them from the js. It&#8217;s not a secret that you can do very little customization with them. Below you can see the original code and the stripped one:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://pub.mybloglog.com/comm2.php?mblID=HereGoesYourID&amp;amp;c_width=270&amp;amp;c_sn_opt=n&amp;amp;c_rows=10&amp;amp;c_img_size=h&amp;amp;c_heading_text=&amp;amp;c_color_heading_bg=000000&amp;amp;c_color_heading=FFFFFF&amp;amp;c_color_link_bg=FFFFFF&amp;amp;c_color_link=FFFFFF&amp;amp;c_color_bottom_bg=000000&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;http://pub.mybloglog.com/comm2.php?mblID=HereGoesYourID&amp;amp;c_width=270&amp;amp;c_sn_opt=n&amp;amp;c_rows=10&amp;amp;c_img_size=h&amp;amp;c_heading_text=&amp;amp;&quot;</span> type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>You can see that my <strong>c_heading_text</strong> variable is empty as i don&#8217;t have a header text for my widget.  Now here comes the actual customization process. I tried to make it as simple to understand as i possibly could and made a few comments on the code so that you can figure out which class is for what. There are a few declarations that i left out because they don&#8217;t really help much as their properties are inherited from the really important declarations that are listed below. The following code must be added in your style.css</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* start images related  */</span>
body table<span style="color: #cc00cc;">#MBL_COMM</span> img
<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #000000; font-weight: bold;">black</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">24px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">24px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">999</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
body table<span style="color: #cc00cc;">#MBL_COMM</span> td<span style="color: #6666ff;">.mbl_join_img</span>
<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">black</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">cursor</span><span style="color: #00AA00;">:</span><span style="color: #993333;">pointer</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #933;">0pt</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">2px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">26px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #808080; font-style: italic;">/* stop images related  */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* start of &quot;You!&quot; link */</span>
body table<span style="color: #cc00cc;">#MBL_COMM</span> td.mbl_join 
<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span>BLACK<span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-bottom</span><span style="color: #00AA00;">:</span><span style="color: #933;">0pt</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #993333;">white</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">cursor</span><span style="color: #00AA00;">:</span><span style="color: #993333;">pointer</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span><span style="color: #933;">11px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #933;">0pt</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">2px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #808080; font-style: italic;">/* stop of &quot;You!&quot; link */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* start the whole widget */</span>
body table<span style="color: #cc00cc;">#MBL_COMM</span>
<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">black</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span><span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #000000; font-weight: bold;">black</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #3333ff;">:Verdana</span><span style="color: #00AA00;">,</span>Arial<span style="color: #00AA00;">,</span>Sans-Serif<span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-style</span><span style="color: #00AA00;">:</span><span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-weight</span><span style="color: #00AA00;">:</span><span style="color: #993333;">normal</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">line-height</span><span style="color: #00AA00;">:</span><span style="color: #933;">12px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">270px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #808080; font-style: italic;">/* stop the whole widget */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* start of the tds wrapping the images */</span>
body table<span style="color: #cc00cc;">#MBL_COMM</span> td<span style="color: #6666ff;">.mbl_img</span>
<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">black</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-top</span><span style="color: #00AA00;">:</span><span style="color: #933;">0pt</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">cursor</span><span style="color: #00AA00;">:</span><span style="color: #993333;">pointer</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #933;">0pt</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">2px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">26px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #808080; font-style: italic;">/* stop of the tds wrapping the images */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* start of the three trs wrapping the bottom links */</span>
body table<span style="color: #cc00cc;">#MBL_COMM</span> td.mbl_fo_hidden 
<span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">black</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #993333;">white</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">cursor</span><span style="color: #00AA00;">:</span><span style="color: #993333;">pointer</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span><span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #933;">2px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span><span style="color: #993333;">center</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #808080; font-style: italic;">/* stop of the three table rows wrapping the three bottom links */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* start of &quot;Join My Community&quot; link */</span>
 body table<span style="color: #cc00cc;">#MBL_COMM</span> td<span style="color: #6666ff;">.mbl_join</span> a
<span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">white</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
body table<span style="color: #cc00cc;">#MBL_COMM</span> td<span style="color: #6666ff;">.mbl_join</span> a<span style="color: #3333ff;"><span style="color: #00AA00;">:</span>hover
</span><span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#6C6C6C</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #808080; font-style: italic;">/* end of &quot;Join My Community&quot; link */</span> 
&nbsp;
<span style="color: #808080; font-style: italic;">/* start of &quot;Join This Commnunity&quot; link */</span>
body table<span style="color: #cc00cc;">#MBL_COMM</span> td<span style="color: #6666ff;">.mbl_fo_hidden</span> a
  <span style="color: #00AA00;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #993333;">white</span><span style="color: #00AA00;">;</span>
	<span style="color: #00AA00;">&#125;</span>
body table<span style="color: #cc00cc;">#MBL_COMM</span> td<span style="color: #6666ff;">.mbl_fo_hidden</span> a<span style="color: #3333ff;"><span style="color: #00AA00;">:</span>hover
 </span><span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#6C6C6C</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #808080; font-style: italic;">/* end of &quot;Join This Commnunity&quot; link */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* start of &quot;View Reader Commnunity&quot; and &quot;Provided by MyBlogLog&quot; links*/</span>
body table<span style="color: #cc00cc;">#MBL_COMM</span> td<span style="color: #6666ff;">.mbl_fo_hidden</span> a<span style="color: #3333ff;"><span style="color: #00AA00;">:</span>visited
</span><span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">white</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
body table<span style="color: #cc00cc;">#MBL_COMM</span> td<span style="color: #6666ff;">.mbl_fo_hidden</span> a<span style="color: #3333ff;">:visited</span><span style="color: #3333ff;"><span style="color: #00AA00;">:</span>hover
</span><span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#6C6C6C</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #808080; font-style: italic;">/* end of &quot;View Reader Commnunity&quot; and &quot;Provided by MyBlogLog&quot; links*/</span></pre></td></tr></table></div>

<p>That all. Refresh the page and voila ! You can see the outcome in my footer. Of course i used colors to best fit my blog design but feel free to play with the code until you get what you want.</p>
<img src="http://softinquiry.com/?ak_action=api_record_view&id=41&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://softinquiry.com/style-your-mybloglog-recent-readers-widget.html/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/us/</creativeCommons:license>
	</item>
		<item>
		<title>&#8220;Firebug can make Gmail slow&#8221; workaround and solutions</title>
		<link>http://softinquiry.com/firebug-can-make-gmail-slow-workaround-and-solutions.html</link>
		<comments>http://softinquiry.com/firebug-can-make-gmail-slow-workaround-and-solutions.html#comments</comments>
		<pubDate>Mon, 11 Feb 2008 13:44:01 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[firefox addons]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[browsing]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[solutions]]></category>
		<category><![CDATA[web dev]]></category>

		<guid isPermaLink="false">http://softinquiry.com/firebug-can-make-gmail-slow-workaround-and-solutions.html</guid>
		<description><![CDATA[So, we all know that Firebug is said to slow down the Gmail interface. I&#8217;ve noticed that two and it seems to be very true. Now, we just might presume that the reason for this are the XMLHttpRequests (which are many in Gmail) that are logged by Firebug. An interesting question is just how much [...]]]></description>
			<content:encoded><![CDATA[<p>So, we all know that Firebug is said to slow down the Gmail interface. I&#8217;ve noticed that two and it seems to be very true. Now, we just might presume that the reason for this are the XMLHttpRequests (which are many in Gmail) that are logged by Firebug. An interesting question is just how much does Firebug delay Gmail and other sites because of their HTTP transactions ?</p>
<p>One of the posible solutions to get right with Gmail (and not only) is to disable Firebug for the websites you don&#8217;t want it to stick it&#8217;s nose into. Here comes the real issue: after a while you get sick and tired of disabling Firebug for every website you visit (at least if you could save the &#8220;black list&#8221; somewhere to import it whenever you need it or something like that). Firebug lacks an option that should say &#8220;Disable Firebug for all sites except&#8230;&#8221;, that way things would get a lot more easy. Ok, this is the short way but not necessary the best way of getting things right without compromising your developer activity. You can choose to apply it and analyse the outcome, or not.</p>
<p>If you want to take things further and take advantage of the oportunity of organizing your work, this is your chance. So another possible way of correcting the problem (if we care to take things really personal) is to create another browser profile (it&#8217;s just like having two or more Windows user accounts). In this example i will use just two basic profiles: one profile would be for normal browsing and the other one for web developing purposes. The first thing you&#8217;ll need to do is to close Firefox and open the &#8220;Run&#8221; dialog and execute the following line:</p>
<pre lang="" line="">firefox -ProfileManager</pre>
<p>just like in the following picture:</p>
<p><a href="http://softinquiry.com/wp-content/gallery/firebug_slows_gmail/captura_01-feb-10-2207.jpg" class="thickbox" title="captura_01-feb-10-2207.jpg"></a></p>
<p style="text-align: center"><a href="http://softinquiry.com/wp-content/gallery/firebug_slows_gmail/captura_01-feb-10-2207.jpg" class="thickbox" title="captura_01-feb-10-2207.jpg"><img src="http://softinquiry.com/wp-content/gallery/firebug_slows_gmail/captura_01-feb-10-2207.jpg" alt="captura_01-feb-10-2207.jpg" title="captura_01-feb-10-2207.jpg" /></a></p>
<p>After executing the command a window like the one below will appear allowing you to create multiple profiles:</p>
<p><a href="http://softinquiry.com/wp-content/gallery/firebug_slows_gmail/captura_01-feb-11-1609.jpg" class="thickbox" title="captura_01-feb-11-1609.jpg"></a></p>
<p style="text-align: center"><a href="http://softinquiry.com/wp-content/gallery/firebug_slows_gmail/captura_01-feb-11-1609.jpg" class="thickbox" title="captura_01-feb-11-1609.jpg"><img src="http://softinquiry.com/wp-content/gallery/firebug_slows_gmail/captura_01-feb-11-1609.jpg" alt="captura_01-feb-11-1609.jpg" title="captura_01-feb-11-1609.jpg" /></a></p>
<p>The first step you might want to do after the small window loads is to rename your default profile&#8217;s name to something like &#8220;Developer&#8221; (because this will be the profile that will have all the web dev related addons and settings). Of course you may want to keep this profile only for pure browsing purposes so then you can rename it to &#8220;Browsing&#8221; instead of &#8220;Developer&#8221; as mentioned early above. Either way you will have to install + uninstall some addons (extensions, plugins if you like) in order to customize your profiles to best suit your purposes.</p>
<p>After you rename your profile as mentioned above you need to create a second profile. Make sure you leave the box that&#8217;s followed by &#8220;Don&#8217;t ask at startup&#8221; checked. I suggest that you create another shortcut to Firefox. So now we should have two different Firefox shortcuts on our desktop and the differences between them shoud consist only in their &#8220;Target&#8221; field content as shown in the pictures:</p>
<p align="center"><a href="http://softinquiry.com/wp-content/gallery/firebug_slows_gmail/captura_03-feb-10-2226.jpg" class="thickbox" title="captura_03-feb-10-2226.jpg"><img src="http://softinquiry.com/wp-content/gallery/firebug_slows_gmail/thumbs/thumbs_captura_03-feb-10-2226.jpg" alt="captura_03-feb-10-2226.jpg" title="captura_03-feb-10-2226.jpg" /></a><a href="http://softinquiry.com/wp-content/gallery/firebug_slows_gmail/captura_02-feb-10-2225.jpg" class="thickbox" title="captura_02-feb-10-2225.jpg"><img src="http://softinquiry.com/wp-content/gallery/firebug_slows_gmail/thumbs/thumbs_captura_02-feb-10-2225.jpg" alt="captura_02-feb-10-2225.jpg" title="captura_02-feb-10-2225.jpg" /></a></p>
<p>The next step is to customise your browser profiles. I suggest you keep the profile you&#8217;ll be using exclusively for browsing as &#8220;addons clean&#8221; as possible to make sure your experience with Firefox is as fast as it can get. When it comes to installing addons for your web developing profile i&#8217;d say to have a brief look over the addons i&#8217;m using:</p>
<ul>
<li><a href="http://www.iosart.com/firefox/colorzilla/index.html" title="CollorZilla" target="_blank">CollorZilla</a> (&#8221;advanced Eyedropper, ColorPicker, Page Zoomer and other colorful goodies&#8221;)</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/3006" title="DownloadHelper" target="_blank">DownloadHelper</a> (&#8221;download videos and images from many sites&#8221;)</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/2064" title="dummy lipsum" target="_blank">Dummy Lipsum</a> (generate &#8220;Lorem Ipsum&#8221; dummy text)</li>
<li><a href="http://www.joehewitt.com/software/firebug/" title="firebug" target="_blank">Firebug</a> (&#8221;web development evolved&#8221;)</li>
<li><a href="http://greasemonkey.mozdev.org/" title="greasemonkey" target="_blank">Greasemonkey</a> (&#8221;a user script manager&#8221;)</li>
<li><a href="https://addons.mozilla.org/extensions/moreinfo.php?id=1419" title="ie tab" target="_blank">IE Tab</a> (&#8221;enables you to use the embedded IE engine within Firefox&#8221;)</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1190" title="OperaView" target="_blank">OperaView</a> (&#8221;open pages in Opera from Firefox, Mozilla, Flock and Netscape 8 context menus&#8221;)</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1146" title="screen grab!" target="_blank">Screen grab!</a> (&#8221;saves a web-page as an image&#8221;)</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1122" title="tab mix plus" target="_blank">Tab Mix Plus</a> (&#8221;tab browsing with an added boost&#8221;)</li>
<li><a href="http://chrispederick.com/work/webdeveloper/" title="web developer" target="_blank">Web Developer</a> (&#8221;adds a menu and a toolbar with various web developer tools&#8221;)</li>
</ul>
<p>The given descriptions will just have to do for the moment as i will write a separate article for every addon listed above. Now, related to the fact that you might want some things to be syncronized between the two browser profiles such as bookmars, passwords, cookies, history, etc., this might be a possible solution but i recommend backing up your data before you decide to go any further. To have your bookmarks syncronized you can do one of the following. For example go in one of your profile directories and delete bookmarks.html and instead put a shortcut to the other bookmarks.html file located in your other profile folder; or you can use <a href="https://addons.mozilla.org/en-US/firefox/addon/2410" title="foxmarks" target="_blank">FoxMarks</a> addon to keep your bookmarks syncronized (but then you install an auxiliary addon for this and for that and you find yourself again from where you left: a Firefox browser that moves slower than your granny so i recommend the firest option). This was for the bookmars, now regarding your other shared stuff also delete the original file and create a shortcut for history.dat, history.dat and cookies.txt.</p>
<p>I&#8217;m sure that many of you think that this method is the same as you scratch your left ear with your right hand but it&#8217;s a possible solution if you like to take things further.</p>
<p class="alert2">You might also want to know that i can&#8217;t be held reponsible if something goes wrong. I tested this workaround on Windows XP SP2 with Firefox 2.0.0.12 but this might also work with other versions.</p>
<p>Now, back to the fact that <a href="https://mail.google.com/support/bin/answer.py?answer=77355" title="Google says Firebug slows Gmail down" target="_blank">Google says Firebug slows Gmail down</a>, that&#8217;s a fact but i pose myself the question why Google didn&#8217;t show some benchmarking charts or some kind of statistical information related to this matter. However i do not approve with Google&#8217;s solution because disabling Firebug&#8217;s network monitoring tool would mean a great loss for it&#8217;s benchmarking features.</p>
<p>The bottom line as i already said earlier, would consist in an option within Firebug that will help you disable it for all other websites except the ones you choose to have it enabled on.</p>
<img src="http://softinquiry.com/?ak_action=api_record_view&id=21&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://softinquiry.com/firebug-can-make-gmail-slow-workaround-and-solutions.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/us/</creativeCommons:license>
	</item>
	</channel>
</rss>
