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

			>

	<channel>
		<title>BlueOwlCreative  &#187;  Topic: How do I hide the 2nd and 3rd widget in the footer?</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/how-do-i-hide-the-2nd-and-3rd-widget-in-the-footer/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/how-do-i-hide-the-2nd-and-3rd-widget-in-the-footer/feed/</link>
		<description></description>
		<pubDate>Fri, 17 Jul 2026 10:18:05 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/how-do-i-hide-the-2nd-and-3rd-widget-in-the-footer/#post-19067</guid>
					<title><![CDATA[How do I hide the 2nd and 3rd widget in the footer?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/how-do-i-hide-the-2nd-and-3rd-widget-in-the-footer/#post-19067</link>
					<pubDate>Thu, 17 Apr 2014 09:53:29 +0000</pubDate>
					<dc:creator>marcj</dc:creator>

					<description>
						<![CDATA[
						<p>I&#8217;m after using just the far left and far right widget in the footer and hide the others. Can you let me know how please. Many thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/how-do-i-hide-the-2nd-and-3rd-widget-in-the-footer/#post-19069</guid>
					<title><![CDATA[Reply To: How do I hide the 2nd and 3rd widget in the footer?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/how-do-i-hide-the-2nd-and-3rd-widget-in-the-footer/#post-19069</link>
					<pubDate>Thu, 17 Apr 2014 10:35:59 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Would you like your 2 columns to be half width then? Or you want them to preserve the 2 middle columns but keep them empty? Please reply back and I will give you a solution. <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/how-do-i-hide-the-2nd-and-3rd-widget-in-the-footer/#post-19071</guid>
					<title><![CDATA[Reply To: How do I hide the 2nd and 3rd widget in the footer?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/how-do-i-hide-the-2nd-and-3rd-widget-in-the-footer/#post-19071</link>
					<pubDate>Thu, 17 Apr 2014 10:39:50 +0000</pubDate>
					<dc:creator>marcj</dc:creator>

					<description>
						<![CDATA[
						<p>Empty please mate. Just &#8220;hidden&#8221; the two in the centre. Cheers!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/how-do-i-hide-the-2nd-and-3rd-widget-in-the-footer/#post-19072</guid>
					<title><![CDATA[Reply To: How do I hide the 2nd and 3rd widget in the footer?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/how-do-i-hide-the-2nd-and-3rd-widget-in-the-footer/#post-19072</link>
					<pubDate>Thu, 17 Apr 2014 10:51:17 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Ok, sure. So edit your footer.php and find this:</p>
<pre><code>&lt;div class=&quot;four columns&quot;&gt;
&lt;?php if ( ! dynamic_sidebar(&#039;Footer Widget 1&#039;) ) : ?&gt;			
	&lt;h3 class=&quot;widgettitle&quot;&gt;Footer Widget Area 1&lt;/h3&gt;
	&lt;p&gt;&lt;a href=&quot;&lt;?php echo admin_url(&#039;widgets.php&#039;); ?&gt;&quot;&gt;Assign a widget to this area now.&lt;/a&gt;&lt;/p&gt;	
&lt;?php endif; // end widget area ?&gt;	
&lt;/div&gt;

&lt;div class=&quot;four columns&quot;&gt;
&lt;?php if ( ! dynamic_sidebar(&#039;Footer Widget 2&#039;) ) : ?&gt;
	&lt;h3 class=&quot;widgettitle&quot;&gt;Footer Widget Area 2&lt;/h3&gt;
	&lt;p&gt;&lt;a href=&quot;&lt;?php echo admin_url(&#039;widgets.php&#039;); ?&gt;&quot;&gt;Assign a widget to this area now.&lt;/a&gt;&lt;/p&gt;					
&lt;?php endif; // end widget area ?&gt;	
&lt;/div&gt;

&lt;div class=&quot;four columns&quot;&gt;
&lt;?php if ( ! dynamic_sidebar(&#039;Footer Widget 3&#039;) ) : ?&gt;
	&lt;h3 class=&quot;widgettitle&quot;&gt;Footer Widget Area 3&lt;/h3&gt;
	&lt;p&gt;&lt;a href=&quot;&lt;?php echo admin_url(&#039;widgets.php&#039;); ?&gt;&quot;&gt;Assign a widget to this area now.&lt;/a&gt;&lt;/p&gt;					
&lt;?php endif; // end widget area ?&gt;	
&lt;/div&gt;

&lt;div class=&quot;four columns&quot;&gt;
&lt;?php if ( ! dynamic_sidebar(&#039;Footer Widget 4&#039;) ) : ?&gt;
	&lt;h3 class=&quot;widgettitle&quot;&gt;Footer Widget Area 4&lt;/h3&gt;
	&lt;p&gt;&lt;a href=&quot;&lt;?php echo admin_url(&#039;widgets.php&#039;); ?&gt;&quot;&gt;Assign a widget to this area now.&lt;/a&gt;&lt;/p&gt;					
&lt;?php endif; // end widget area ?&gt;		
&lt;/div&gt;</code></pre>
<p>These are basically the four columns in the footer, each of them is &#8220;four columns&#8221; wide which is basically 1/4 of sixteen (the full wrapper width).</p>
<p>All you need to do is Leave out an empty space in the center 2 columns and you are good to go, like so:</p>
<pre><code>&lt;div class=&quot;four columns&quot;&gt;
&lt;?php if ( ! dynamic_sidebar(&#039;Footer Widget 1&#039;) ) : ?&gt;			
	&lt;h3 class=&quot;widgettitle&quot;&gt;Footer Widget Area 1&lt;/h3&gt;
	&lt;p&gt;&lt;a href=&quot;&lt;?php echo admin_url(&#039;widgets.php&#039;); ?&gt;&quot;&gt;Assign a widget to this area now.&lt;/a&gt;&lt;/p&gt;	
&lt;?php endif; // end widget area ?&gt;	
&lt;/div&gt;

&lt;div class=&quot;four columns&quot;&gt;
&amp;nbsp;	
&lt;/div&gt;

&lt;div class=&quot;four columns&quot;&gt;
&amp;nbsp;	
&lt;/div&gt;

&lt;div class=&quot;four columns&quot;&gt;
&lt;?php if ( ! dynamic_sidebar(&#039;Footer Widget 4&#039;) ) : ?&gt;
	&lt;h3 class=&quot;widgettitle&quot;&gt;Footer Widget Area 4&lt;/h3&gt;
	&lt;p&gt;&lt;a href=&quot;&lt;?php echo admin_url(&#039;widgets.php&#039;); ?&gt;&quot;&gt;Assign a widget to this area now.&lt;/a&gt;&lt;/p&gt;					
&lt;?php endif; // end widget area ?&gt;		
&lt;/div&gt;</code></pre>
<p>Let me know if that works OK for you. <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/how-do-i-hide-the-2nd-and-3rd-widget-in-the-footer/#post-19074</guid>
					<title><![CDATA[Reply To: How do I hide the 2nd and 3rd widget in the footer?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/how-do-i-hide-the-2nd-and-3rd-widget-in-the-footer/#post-19074</link>
					<pubDate>Thu, 17 Apr 2014 11:13:19 +0000</pubDate>
					<dc:creator>marcj</dc:creator>

					<description>
						<![CDATA[
						<p>PERFECT.</p>
<p>Many thanks for the prompt assistance. Much appreciated!<br />
 <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

