<?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: Row Container Height</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/row-container-height/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/row-container-height/feed/</link>
		<description></description>
		<pubDate>Fri, 17 Jul 2026 14:15:47 +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/row-container-height/#post-21497</guid>
					<title><![CDATA[Row Container Height]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/row-container-height/#post-21497</link>
					<pubDate>Sat, 29 Nov 2014 23:02:00 +0000</pubDate>
					<dc:creator>thisismyalias</dc:creator>

					<description>
						<![CDATA[
						<p>Is it possible to set the row container height?</p>
<p>I would like to have a background image and some text, but since the text isn&#8217;t that long (vertical height wise) very little of the image is shown. I would like more of an empty buffer above and below the text so more of the image is shown.</p>
<p>I assume I could do this with several &lt;br&gt; tags, but is there a neater way? </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/row-container-height/#post-21501</guid>
					<title><![CDATA[Reply To: Row Container Height]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/row-container-height/#post-21501</link>
					<pubDate>Mon, 01 Dec 2014 10:02:18 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>You can replace your shortcode_row_container function in includes/shortcodes.php with this:</p>
<pre><code>function shortcode_row_container( $atts, $content = null ) {

	extract(shortcode_atts(
		array(
        &#039;full_width&#039; =&gt; &#039;no&#039;,
		&#039;dark&#039;		=&gt; &#039;no&#039;,
		&#039;padded&#039; 	=&gt; &#039;yes&#039;,
		&#039;bgr_url&#039;  		=&gt; &#039;&#039;,
		&#039;bgr_parallax&#039; =&gt; &#039;no&#039;,
		&#039;start_now&#039; =&gt; &#039;&#039;,
		&#039;custom_classes&#039; =&gt; &#039;&#039;,
		), $atts));
    
	$full_width = (($full_width==&#039;yes&#039;)||($full_width==&#039;Yes&#039;)) ? true : false;
	$dark = (($dark==&#039;yes&#039;)||($dark==&#039;Yes&#039;)) ? true : false;
	$padded = (($padded==&#039;yes&#039;)||($padded==&#039;Yes&#039;)) ? true : false;
	$bgr_exists = $bgr_url ? true : false;
	$bgr_parallax = (($bgr_parallax==&#039;yes&#039;)||($bgr_parallax==&#039;Yes&#039;)) ? true : false;
	$start_now = (($start_now==&#039;yes&#039;)||($start_now==&#039;Yes&#039;)) ? true : false;
		
    $str = &#039;&lt;!-- Container Row --&gt;&#039;.
    ($full_width ? &#039;&lt;div &#039;.($bgr_parallax ? &#039; data-stellar-background-ratio=&quot;0.5&quot;&#039; : &#039;&#039;).&#039; class=&quot;full_container &#039;.$custom_classes.&#039; &#039;.($bgr_parallax ? &#039;parallax_bgr&#039; : &#039;&#039;).&#039; &#039;.($padded ? &#039;&#039; : &#039;no_padding&#039;).&#039; &#039;.($bgr_exists ? &quot;no_border_container&quot; : &quot;&quot;).&#039;&quot;&#039; .($bgr_exists ? &#039; style=&quot;background:url(&#039;.$bgr_url.&#039;) center center no-repeat; &#039;.($bgr_parallax ? &#039;background-attachment: fixed; background-size: cover;&#039; : &#039;&#039;).&#039;&quot;&#039; : &#039;&#039;).&#039;&gt;&#039; : &#039;&#039;).&#039;&lt;div class=&quot;container animationStart &#039;.($start_now ? &#039;startNow&#039; : &#039;&#039;).&#039;&quot;&gt;
		&lt;div class=&quot;row &#039;.($padded ? &#039;&#039; : &#039;no_margin&#039;).&#039; &#039;.($dark ? &#039;dark_container_white_text&#039; : &#039;&#039;).&#039;&quot;&gt;
			&lt;div class=&quot;sixteen columns&quot;&gt;
			&#039;. do_shortcode_boc($content) .&#039;
			&lt;/div&gt;			
    	&lt;/div&gt;
	&lt;/div&gt;
	&#039;.($full_width ? &#039;&lt;/div&gt;&#039; : &#039;&#039;).
	&#039;&lt;!-- Container Row :: END --&gt;
	&#039;;

    return $str;
}</code></pre>
<p>Then you can pass custom classes to the row container like so:</p>
<pre><code>[row_container full_width=&quot;yes&quot; dark=&quot;no&quot; padded=&quot;yes&quot; bgr_url=&quot;&quot; bgr_parallax=&quot;no&quot; custom_classes=&quot;my_class&quot;]

Full Width Column Text

[/row_container]</code></pre>
<p>You can then style that &#8220;.my_class&#8221; anyway you please in your Theme Options->Custom Styles, for example:</p>
<pre><code>.my_class{
background: yellow;
height: 300px;
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/row-container-height/#post-21518</guid>
					<title><![CDATA[Reply To: Row Container Height]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/row-container-height/#post-21518</link>
					<pubDate>Wed, 03 Dec 2014 04:07:04 +0000</pubDate>
					<dc:creator>thisismyalias</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you. Excellent answer.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

