<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>Wordpress and Webdesign Forum go41 &#187; Tag: sidebar - Recent Posts</title>
		<link>http://forum.go41.de/tags/sidebar</link>
		<description>How To, tips, php and css code for your WordPress site</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Feb 2012 18:20:40 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://forum.go41.de/rss/tags/sidebar" rel="self" type="application/rss+xml" />

		<item>
			<title>kinyofu on "My footer is in sidebar position"</title>
			<link>http://forum.go41.de/topic/my-footer-is-in-sidebar-position#post-868</link>
			<pubDate>Fri, 04 Mar 2011 06:48:25 +0000</pubDate>
			<dc:creator>kinyofu</dc:creator>
			<guid isPermaLink="false">868@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Thanx
</p>]]></description>
					</item>
		<item>
			<title>Joern on "My footer is in sidebar position"</title>
			<link>http://forum.go41.de/topic/my-footer-is-in-sidebar-position#post-867</link>
			<pubDate>Fri, 04 Mar 2011 00:15:12 +0000</pubDate>
			<dc:creator>Joern</dc:creator>
			<guid isPermaLink="false">867@http://forum.go41.de/</guid>
			<description><![CDATA[<p>you miss one /div in the lower part of single.php<br />
the last lines of original single.php look like this:<br />
<pre><code>&#60;div style=&#34;float:right;display:block;&#34;&#62;&#60;?php if(function_exists(&#39;the_ratings&#39;)) { the_ratings(); } ?&#62;&#60;/div&#62;
	&#60;/div&#62;

	&#60;/div&#62;

	&#60;div id=&#34;comments&#34;&#62;
	&#60;?php comments_template(); ?&#62;
	&#60;/div&#62;

	&#60;?php endwhile; else: ?&#62;

	&#60;p&#62;Sorry, no posts matched your criteria.&#60;/p&#62;

	&#60;?php endif; ?&#62;

	&#60;/div&#62;

&#60;?php get_sidebar(); ?&#62;
&#60;?php get_footer(); ?&#62;</code></pre>
<p>it might be just the last &#60;/div&#62; before get_sidebar(); you do not have..?<br />
It's a problem of all your single pages, nothing to do with the more link.
</p>]]></description>
					</item>
		<item>
			<title>kinyofu on "My footer is in sidebar position"</title>
			<link>http://forum.go41.de/topic/my-footer-is-in-sidebar-position#post-866</link>
			<pubDate>Thu, 03 Mar 2011 19:43:46 +0000</pubDate>
			<dc:creator>kinyofu</dc:creator>
			<guid isPermaLink="false">866@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Hi Joern,</p>
<p>Here's another mystery. When I click on "more" to read the continuation of my featured article, that page shows my footer in my sidebar. Can you direct me on how to fix this?</p>
<p>Thanks much,</p>
<p>Kinyofu<br />
<a href="http://www.empoweringwomenslives.com" rel="nofollow">http://www.empoweringwomenslives.com</a>
</p>]]></description>
					</item>
		<item>
			<title>Joern on "add latest video from a post in WordPress sidebar"</title>
			<link>http://forum.go41.de/topic/add-latest-video-from-a-post-in-wordpress-sidebar#post-838</link>
			<pubDate>Wed, 16 Feb 2011 15:54:19 +0000</pubDate>
			<dc:creator>Joern</dc:creator>
			<guid isPermaLink="false">838@http://forum.go41.de/</guid>
			<description><![CDATA[<p>An addition:<br />
Here we take an embeded video from a post in a certain category. The code above in sidebarclip.php loads by default only one latest post. You can however change:<br />
query_posts('posts_per_page=1&#38;cat=$category_id');<br />
to load let's say 4 posts where each has another video embeded:<br />
query_posts('posts_per_page=4&#38;cat=$category_id');<br />
now you load 4 players.</p>
<p>The size of the player you can set in sidebarclip.php:<br />
	'width'=&#62;300,<br />
	'height'=&#62;250 ));<br />
to another value<br />
use style.css to arrange that players as you like - first you have to get them to show up..
</p>]]></description>
					</item>
		<item>
			<title>Joern on "add latest video from a post in WordPress sidebar"</title>
			<link>http://forum.go41.de/topic/add-latest-video-from-a-post-in-wordpress-sidebar#post-834</link>
			<pubDate>Tue, 15 Feb 2011 12:36:40 +0000</pubDate>
			<dc:creator>Joern</dc:creator>
			<guid isPermaLink="false">834@http://forum.go41.de/</guid>
			<description><![CDATA[<p>I am going to add a video to the sidebar. This video is taken from the last post in a category you have to set.</p>
<p>The post actually is filtered for an oembed video, only this video will be displayed in a size you can set.</p>
<p>For testing I just do it on a theme demo site here:<br />
<a href="http://themes.go41.de/?wptheme=arthemix_dev" rel="nofollow">http://themes.go41.de/?wptheme=arthemix_dev</a></p>
<p>First of all you should have a post with an embeded video, WordPress allows you to embed a video by just inserting the URL in a single line in the post editor, like this:</p>
<pre><code><a href="http://www.youtube.com/watch?v=wLph9-ZkMX8" rel="nofollow">http://www.youtube.com/watch?v=wLph9-ZkMX8</a></code></pre>
<p>looking at the single post it should show you the video.</p>
<p>Let's do it (sample should be to see here <a href="http://themes.go41.de/?wptheme=arthemix_dev" rel="nofollow">http://themes.go41.de/?wptheme=arthemix_dev</a> )</p>
<p>STOP: BACKUP YOUR FILES WE ARE GOING TO CHANGE, just in case...</p>
<p>We have to edit sidebar.php and add two lines to load another template called sidebarclip.php (we will create this file later)</p>
<p>Lines to add in sidebar.php: (in Arthemia under div id="sidebar" just above div id="sidebar-ads" )</p>
<pre><code>&#60;?php if(file_exists(TEMPLATEPATH . &#39;/sidebarclip.php&#39;)) { // get the clip-script
	include (TEMPLATEPATH . &#39;/sidebarclip.php&#39;); } ?&#62;</code></pre>
<p>This code just looks for the following template file in your themes folder, It's just a 'manual widget' ;-) </p>
<p>Create a new file called sidebarclip.php with the following content</p>
<pre><code>&#60;div id=&#34;sidebar-video&#34;&#62;
&#60;?php $category_id = get_cat_ID( &#39;Videos&#39; ); // set your category name here, if you know the ID use $category_id = 6;  ?&#62;
&#60;h3&#62;Featured Video &#60;a style=&#34;float: right;&#34; href=&#34;&#60;?php $category_link = get_category_link( $category_id ); echo $category_link; ?&#62;&#34; title=&#34;more Videos&#34;&#62;more Videos&#60;/a&#62;&#60;/h3&#62;
&#60;?php
query_posts(&#39;posts_per_page=1&#38;cat=$category_id&#39;);
if ( have_posts() ) : while ( have_posts() ) : the_post();?&#62;
&#60;?php if((function_exists(&#39;resizeMarkup&#39;)) &#38;&#38; (function_exists(&#39;get_embedhtml&#39;))) {
	$resizedvideo = resizeMarkup((get_embedhtml($postID)), array(
	&#39;width&#39;=&#62;300,
	&#39;height&#39;=&#62;250 ));
	if($resizedvideo != &#39;&#39;)
			{
			echo $resizedvideo;
			} else { // if no Video
			echo &#39;no Clip available&#39;;
			}
		} ?&#62;
&#60;p&#62;Read the post:&#60;br /&#62;&#60;a href=&#34;&#60;?php the_permalink() ?&#62;&#34; title=&#34;&#60;?php the_title(); ?&#62;&#34;&#62;&#60;?php the_title(); ?&#62;&#60;/a&#62;&#60;/p&#62;

&#60;?php
endwhile;endif;
wp_reset_query();
?&#62;
&#60;/div&#62;</code></pre>
<p>beeing here I can see something new in the sidebar already, but where is the video clip?<br />
We still have to add some functions in functions.php of your theme folder, here the script: you should add it at the end of functions.php before the closing '?&#62;'<br />
<pre><code>// the function to resize oembed videos
function resizeMarkup($markup, $dimensions)
{
$w = $dimensions[&#39;width&#39;];
$h = $dimensions[&#39;height&#39;];

$patterns = array();
$replacements = array();
if( !empty($w) )
{
$patterns[] = &#39;/width=&#34;([0-9]+)&#34;/&#39;;
$patterns[] = &#39;/width:([0-9]+)/&#39;;

$replacements[] = &#39;width=&#34;&#39;.$w.&#39;&#34;&#39;;
$replacements[] = &#39;width:&#39;.$w;
}

if( !empty($h) )
{
$patterns[] = &#39;/height=&#34;([0-9]+)&#34;/&#39;;
$patterns[] = &#39;/height:([0-9]+)/&#39;;

$replacements[] = &#39;height=&#34;&#39;.$h.&#39;&#34;&#39;;
$replacements[] = &#39;height:&#39;.$h;
}

$patterns[] = &#39;/&#60;\/param&#62;&#60;embed/&#39;;
$patterns[] = &#39;/allowscriptaccess=&#34;always&#34;/&#39;;

$replacements[] = &#39;&#60;/param&#62;&#60;param name=&#34;wmode&#34; value=&#34;transparent&#34;&#62;&#60;/param&#62;&#60;embed&#39;;
$replacements[] = &#39;wmode=&#34;transparent&#34; allowscriptaccess=&#34;always&#34;&#39;;

return preg_replace($patterns, $replacements, $markup);
}

// get_embedhtml
function get_embedhtml($postID)
{
  $custom_field_keys = get_post_custom_keys();
  foreach ( $custom_field_keys as $key =&#62; $value ) {
    $valuet = trim(substr($value, 1, 4));
	if ( &#39;oemb&#39; == $valuet ) { // look if a oembed key exists
    $oembkey = $value; //now set the the key we found as oembkey
	$oembvalue = get_post_custom_values($oembkey); //get the value of oembkey as oembvalue
	if (isset($oembvalue[0])) {
		$embedhtml = ($oembvalue[0]);
return $embedhtml;
		}
	}
  }

}

function add_transparent($oembvideo) {
$patterns = array();
$replacements = array();
$patterns[] = &#39;/&#60;\/param&#62;&#60;embed/&#39;;
$patterns[] = &#39;/allowscriptaccess=&#34;always&#34;/&#39;;

$replacements[] = &#39;&#60;/param&#62;&#60;param name=&#34;wmode&#34; value=&#34;transparent&#34;&#62;&#60;/param&#62;&#60;embed&#39;;
$replacements[] = &#39;wmode=&#34;transparent&#34; allowscriptaccess=&#34;always&#34;&#39;;

return preg_replace($patterns, $replacements, $oembvideo);

	return $oembvideo;
}
add_filter(&#39;embed_oembed_html&#39;, &#39;add_transparent&#39;);</code></pre>
<p>Works! Lucky we are, but still could apply some styling to the new div id="sidebar-video" to make it look nice.</p>
<p>This is done in style.css, I use:</p>
<p>#sidebar-video {<br />
width:300px;<br />
float:right;<br />
border:1px solid #DDDDDD;<br />
background:#FFFFFF;<br />
padding:10px 9px;<br />
margin: 0 0 10px;<br />
}</p>
<p>Try it, having problems ask for help!<br />
Demo here: <a href="http://themes.go41.de/?wptheme=arthemix_dev" rel="nofollow">http://themes.go41.de/?wptheme=arthemix_dev</a> in the sidebar
</p>]]></description>
					</item>
		<item>
			<title>masteradmin on "Can&#039;t See Ads in FireFox"</title>
			<link>http://forum.go41.de/topic/cant-see-ads-in-firefox#post-832</link>
			<pubDate>Tue, 15 Feb 2011 00:13:32 +0000</pubDate>
			<dc:creator>masteradmin</dc:creator>
			<guid isPermaLink="false">832@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Actually I thought it might be the problem you solved about not seeing your sidebar add</p>
<p> - just mentioning in case plugin conflicts arise -</p>
<p>Leave it alone and do not touch a running system.
</p>]]></description>
					</item>
		<item>
			<title>masteradmin on "Restricting Sidebar Ad Views"</title>
			<link>http://forum.go41.de/topic/restricting-sidebar-ad-views#post-830</link>
			<pubDate>Mon, 14 Feb 2011 23:50:17 +0000</pubDate>
			<dc:creator>masteradmin</dc:creator>
			<guid isPermaLink="false">830@http://forum.go41.de/</guid>
			<description><![CDATA[<p>thank you for the hint, did not think about that.<br />
that is helpful!<br />
That's why I do not just number the part in sidebar but give all widgets the correct name like<br />
...&#124;&#124; !dynamic_sidebar('Sidebar Top')...<br />
...&#124;&#124; !dynamic_sidebar('Sidebar Left')...<br />
...&#124;&#124; !dynamic_sidebar('Sidebar Right')...<br />
etc<br />
<a href="http://themes.go41.de/">my themes</a><br />
having the same name in sidebar and in functions.php will not make a problem like this.
</p>]]></description>
					</item>
		<item>
			<title>raf_79 on "Can&#039;t See Ads in FireFox"</title>
			<link>http://forum.go41.de/topic/cant-see-ads-in-firefox#post-828</link>
			<pubDate>Mon, 14 Feb 2011 21:34:16 +0000</pubDate>
			<dc:creator>raf_79</dc:creator>
			<guid isPermaLink="false">828@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Are you suggesting I get rid of these somehow? (I wouldn't know how to do that)</p>
<p>Or, just mentioning it for my information? (In case plugin conflicts arise)</p>
<p>Could you explain further, please?</p>
<p>I haven't had any problems with Dynamic Content Gallery thus far. Although I did make the switch to jquery as you suggested in its settings page and the gallery disappeared. I couldn't figure out how to make it work in jquery, so I switched back to MooTools for now.
</p>]]></description>
					</item>
		<item>
			<title>raf_79 on "Restricting Sidebar Ad Views"</title>
			<link>http://forum.go41.de/topic/restricting-sidebar-ad-views#post-827</link>
			<pubDate>Mon, 14 Feb 2011 21:15:57 +0000</pubDate>
			<dc:creator>raf_79</dc:creator>
			<guid isPermaLink="false">827@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Thank you much. This worked quite well except for the following...</p>
<p>The contents of all the widgets were knocked out of order and I had to enter what I wanted in the new widget in the last footer widget in the dashboard for it to show up. To correct this I had to re-number in order the following line in both sidebar.php and footer.php:</p>
<p><code>if ( !function_exists('dynamic_sidebar') &#124;&#124; !dynamic_sidebar(<strong>1</strong>) ) : ?&#62;<br />
</code></p>
<p>Start renumbering in sidebar.php first and continue through the end in footer.php.</p>
<p>Thought this might be helpful to anyone else who might try this.
</p>]]></description>
					</item>
		<item>
			<title>masteradmin on "Restricting Sidebar Ad Views"</title>
			<link>http://forum.go41.de/topic/restricting-sidebar-ad-views#post-826</link>
			<pubDate>Mon, 14 Feb 2011 10:04:00 +0000</pubDate>
			<dc:creator>masteradmin</dc:creator>
			<guid isPermaLink="false">826@http://forum.go41.de/</guid>
			<description><![CDATA[<p>to get a 'widgetized' div id="sidebar-ads" you have to edit sidebar.php and also functions.php in your theme folder</p>
<p>modify <strong>sidebar.php</strong> in div id="sidebar-ads" close to the top to look like this:<br />
<pre><code>&#60;div id=&#34;sidebar-ads&#34;&#62;
	&#60;?php /* Widget Sidebar Top Extra */ if ( !function_exists(&#39;dynamic_sidebar&#39;) &#124;&#124; !dynamic_sidebar(&#39;Sidebar Top Extra&#39;) ) : ?&#62;

	&#60;?php endif; ?&#62;
&#60;/div&#62;</code></pre>
<p>(you might have div id="sidebar-pads" !!)</p>
<p>open up <strong>functions.php</strong>, here you find:<br />
<pre><code>register_sidebar(array(&#39;name&#39; =&#62; &#39;Sidebar Top&#39;,&#39;before_widget&#39; =&#62; &#39;&#39;,&#39;after_widget&#39; =&#62; &#39;&#39;,&#39;before_title&#39; =&#62; &#39;&#60;h3&#62;&#39;,&#39;after_title&#39; =&#62; &#39;&#60;/h3&#62;&#39;));
register_sidebar(array(&#39;name&#39; =&#62; &#39;Sidebar Left&#39;,&#39;before_widget&#39; =&#62; &#39;&#39;,&#39;after_widget&#39; =&#62; &#39;&#39;,&#39;before_title&#39; =&#62; &#39;&#60;h3&#62;&#39;,&#39;after_title&#39; =&#62; &#39;&#60;/h3&#62;&#39;));
register_sidebar(array(&#39;name&#39; =&#62; &#39;Sidebar Right&#39;,&#39;before_widget&#39; =&#62; &#39;&#39;,&#39;after_widget&#39; =&#62; &#39;&#39;,&#39;before_title&#39; =&#62; &#39;&#60;h3&#62;&#39;,&#39;after_title&#39; =&#62; &#39;&#60;/h3&#62;&#39;));
...</code></pre>
<p>add just above the first line shown here one more line for your new widget 'Sidebar Top Extra':</p>
<pre><code>register_sidebar(array(&#39;name&#39; =&#62; &#39;Sidebar Top Extra&#39;,&#39;before_widget&#39; =&#62; &#39;&#39;,&#39;after_widget&#39; =&#62; &#39;&#39;,&#39;before_title&#39; =&#62; &#39;&#60;h3&#62;&#39;,&#39;after_title&#39; =&#62; &#39;&#60;/h3&#62;&#39;));</code></pre>
<p>now you should find in your dashboard a new widget</p>
<p>BACKUP originals before modifying!! I didn't test...
</p>]]></description>
					</item>
		<item>
			<title>masteradmin on "Can&#039;t See Ads in FireFox"</title>
			<link>http://forum.go41.de/topic/cant-see-ads-in-firefox#post-825</link>
			<pubDate>Mon, 14 Feb 2011 09:02:10 +0000</pubDate>
			<dc:creator>masteradmin</dc:creator>
			<guid isPermaLink="false">825@http://forum.go41.de/</guid>
			<description><![CDATA[<p>your site is loading a lot of scripts, done by the plugins you use, as there are:<br />
GET jquery.js?ver=1.4.2<br />
GET scripts.js?ver=3.0.1<br />
GET ZeroClipboard.js?ver=1.3<br />
GET ZeroClipboard.wlm.js.php?ver=3.0.1<br />
GET jquery.tooltip.js?ver=1.3<br />
GET jquery.tooltip.wlm.js?ver=3.0.1<br />
GET jquery-ui-1.7.3.datepicker.min.js?ver=1.3<br />
GET jquery.elastic.js?ver=3.0.1<br />
GET jquery.qtip-1.0.0-rc3.min.js?ver=3.0.1<br />
GET jquery-ui.min.js?ver=3.0.1<br />
GET mingle.js?ver=3.0.1<br />
GET postTabs.js?ver=3.0.1<br />
GET audio-player.js?ver=2.0.4.1<br />
GET script.js<br />
GET style.css<br />
GET jd.gallery.css<br />
GET mootools-1.2.4-core-jm.js<br />
GET mootools-1.2.4.4-more.js<br />
GET jd.gallery_1_2_4_4.js<br />
GET jd.gallery.transitions_1_2_4_4.js<br />
GET jquery.min.js<br />
GET jquery.validate.js<br />
GET jquery.form.js<br />
GET gAnnounce.js<br />
GET ui.core.js?ver=1.7.3<br />
GET ui.draggable.js?ver=1.7.3<br />
GET ui.resizable.js?ver=1.7.3<br />
GET ui.dialog.js?ver=1.7.3<br />
GET polls-js.js?ver=2.50<br />
GET jquery.form.js?ver=2.47<br />
GET scripts.js?ver=2.4.2<br />
GET Referencetagging.js<br />
GET Thkb_AZ80FK.js<br />
GET Klgeau2R2PZ.js<br />
GET BodW0U6m95W.js<br />
GET 2US3oN5UXjn.js<br />
GET kE9_LcwU9h1.js</p>
<p>just look in your sites source code for lines starting with:<br />
script type='text/javascript'</p>
<p>As mootools is quite big and sometimes makes problems if used together with jquery I suggested to use jquery instead, which you can select in the plugin's (Dynamic Content Gallery) Settings page
</p>]]></description>
					</item>
		<item>
			<title>raf_79 on "Restricting Sidebar Ad Views"</title>
			<link>http://forum.go41.de/topic/restricting-sidebar-ad-views#post-823</link>
			<pubDate>Mon, 14 Feb 2011 07:40:49 +0000</pubDate>
			<dc:creator>raf_79</dc:creator>
			<guid isPermaLink="false">823@http://forum.go41.de/</guid>
			<description><![CDATA[<p>I use a FF plugin (Dynamic Widgets) to control which sidebar widgets show up on the pages of my site. The sidebar ad although viewed in the sidebar is not in a widget so I can't control the pages it shows up on this way. What coding would I use to accomplish this same result another way?</p>
<p>Thank you in advance for your help with this.
</p>]]></description>
					</item>
		<item>
			<title>raf_79 on "Can&#039;t See Ads in FireFox"</title>
			<link>http://forum.go41.de/topic/cant-see-ads-in-firefox#post-822</link>
			<pubDate>Mon, 14 Feb 2011 07:33:56 +0000</pubDate>
			<dc:creator>raf_79</dc:creator>
			<guid isPermaLink="false">822@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Ok, I've figured out the problem. After further investigation (viewing other active Arthemia sites), I discovered their ads also do not show up if I view them in my Firefox browser but will in IE.</p>
<p>I have the AdBlock Plus plugin activated in my Firefox browser and it is blocking the placeholder from showing up because the div to the placeholder has the word "ad" in it (&#60;div id="sidebar-ads"&#62;. If I change that div id to 'sidebar-pads' for example, the placeholder shows up in my FF browser without a problem. I have now made my site an exception to the block. Mystery solved. Whew!</p>
<p>Thank you again for your input into solving this mystery. :)</p>
<p>Now for my next problem...</p>
<p>P.S. I saw what you said about jquery scripts on my site. I don't know what those are and I know I haven't intentionally added any as far as i know. Could you give me an example of what you are referring to?
</p>]]></description>
					</item>
		<item>
			<title>masteradmin on "Can&#039;t See Ads in FireFox"</title>
			<link>http://forum.go41.de/topic/cant-see-ads-in-firefox#post-819</link>
			<pubDate>Mon, 14 Feb 2011 00:27:54 +0000</pubDate>
			<dc:creator>masteradmin</dc:creator>
			<guid isPermaLink="false">819@http://forum.go41.de/</guid>
			<description><![CDATA[<p>I see it, sure,<br />
what happens if you just put the url of the image in FF?</p>
<p><a href="http://xyz.org/blog/wp-content/themes/your_artxxx/images/banners/square.jpg" rel="nofollow">http://xyz.org/blog/wp-content/themes/your_artxxx/images/banners/square.jpg</a> -(your path!)</p>
<p>If I do this I see just the image and I also do not find that problem...</p>
<p>I would maybe put this image in images/ folder from images/banners/ and change that line in sidebar.php. It's the only image you use from banners folder I guess<br />
Or upload any other image with the same size? Rename it?</p>
<p>That's strange...
</p>]]></description>
					</item>
		<item>
			<title>raf_79 on "Can&#039;t See Ads in FireFox"</title>
			<link>http://forum.go41.de/topic/cant-see-ads-in-firefox#post-818</link>
			<pubDate>Sun, 13 Feb 2011 22:25:58 +0000</pubDate>
			<dc:creator>raf_79</dc:creator>
			<guid isPermaLink="false">818@http://forum.go41.de/</guid>
			<description><![CDATA[<p>Thank you for your response. </p>
<p>I've cleared my cache, I'm constantly refreshing my browser as I work on my site, and I've done the merge you suggested. But the placeholder still only shows up in IE and will not show up in the right sidebar of my Firefox browser. If I place the sidebar ad placeholder code in one of the 3 bottom widget boxes, I can see it in Firefox without a problem.</p>
<p>You say you can see it in your Firefox browser on the side, but I've tried three other computers with Firefox and cannot. I don't know what else to do about this...
</p>]]></description>
					</item>

	</channel>
</rss>

