<?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>Overlay transparent color over background image &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/feed/</link>
		<description></description>
		<lastBuildDate>Fri, 24 Oct 2025 18:40:04 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-317691</guid>
					<title><![CDATA[Overlay transparent color over background image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-317691</link>
					<pubDate>Wed, 01 Jul 2015 01:49:34 +0000</pubDate>
					<dc:creator>threeoten</dc:creator>

					<description>
						<![CDATA[
						<p>Hi, I&#8217;m wanting the following transparency to appear over the top of a background image in one section of my page:<br />
background-color: rgba(0,0,0,.5);</p>
<p>I can&#8217;t seem to figure out how to get the transparency to appear over the whole background image and I&#8217;m not wanting to edit the image in photoshop to achieve this.</p>
<p>Here&#8217;s the test page:<br />
<a href="http://www.quailsprings.org/QS2/programs/farm-garden/bees-cheese/" rel="nofollow">http://www.quailsprings.org/QS2/programs/farm-garden/bees-cheese/</a></p>
<p>Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-317911</guid>
					<title><![CDATA[Reply To: Overlay transparent color over background image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-317911</link>
					<pubDate>Wed, 01 Jul 2015 08:08:41 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>To achieve that, you can add this under <strong>Custom &gt; CSS</strong> in the <strong>Customizer</strong>.</p>
<pre><code>
.page-id-6735 #x-section-1 .x-container.max.width {
      background-color: rgba(0,0,0,.5);
      width: 100%;
      max-width: 100%;
}
</code></pre>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-318462</guid>
					<title><![CDATA[Reply To: Overlay transparent color over background image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-318462</link>
					<pubDate>Wed, 01 Jul 2015 17:15:49 +0000</pubDate>
					<dc:creator>threeoten</dc:creator>

					<description>
						<![CDATA[
						<p>That does get the overlay on top of the background image! But It also changes the appearance of the section itself. It seems that the above CSS is the same as applying the RGBA style to the Row and setting it to &#8216;no container&#8217;, which  I also tried. They both seem to throw off the vertical center of the text on resizing the window, and the left and right margins or padding seem to get taken away. Is there another way to apply the RGBA style that doesn&#8217;t change the layout so much? I really liked how I got the text and image to look as the screen resizes and the above solution throws it all off.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-318729</guid>
					<title><![CDATA[Reply To: Overlay transparent color over background image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-318729</link>
					<pubDate>Wed, 01 Jul 2015 22:18:04 +0000</pubDate>
					<dc:creator>Lely</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>I&#8217;ve tried different solution. Usually we can achieve that by adding the <strong>after</strong> pseudo effect in CSS but that will create scroll when you resize the browser.</p>
<p>The best way so far is to add the following in your <strong>Cornerstone Edit Page  Settings &gt; Custom JS(Right side of CUSTOM CSS):</strong></p>
<pre><code>jQuery(function($){
$( &quot;#x-section-1&quot; ).prepend( &quot;&lt;div class=&#039;section-overlay&#039;&gt;&lt;/div&gt;&quot; );
});</code></pre>
<p>Then add the following CSS via <strong>Appearance &gt; Customizer &gt; Custom &gt; CSS</strong></p>
<pre><code>.section-overlay {
  content: &#039; &#039;;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.5);
   width: 100%;
  height: 100%;
 
}</code></pre>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-318747</guid>
					<title><![CDATA[Reply To: Overlay transparent color over background image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-318747</link>
					<pubDate>Wed, 01 Jul 2015 22:38:10 +0000</pubDate>
					<dc:creator>threeoten</dc:creator>

					<description>
						<![CDATA[
						<p>THAT did it! Thank you!</p>
<p>Now if I wanted to use this for several similar pages, not just this one, what would I change in order to make that CSS control all of them the same?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-318985</guid>
					<title><![CDATA[Reply To: Overlay transparent color over background image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-318985</link>
					<pubDate>Thu, 02 Jul 2015 05:08:56 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>You just need to add the code below in <strong> Cornerstone Edit Page Settings &gt; Custom JS</strong> for every page where you want to add that effect.</p>
<pre><code>
jQuery(function($){
    $( &quot;#x-section-1&quot; ).prepend( &quot;&lt;div class=&#039;section-overlay&#039;&gt;&lt;/div&gt;&quot; );
});
</code></pre>
<p>Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-318992</guid>
					<title><![CDATA[Reply To: Overlay transparent color over background image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-318992</link>
					<pubDate>Thu, 02 Jul 2015 05:16:39 +0000</pubDate>
					<dc:creator>threeoten</dc:creator>

					<description>
						<![CDATA[
						<p>I&#8217;m just noticing that now that I add more sections below this one, the RGBA overlay seems to cover the the entire page &#8211; all sections. How can I make it just overlay the top section? See here:<br />
<a href="http://www.quailsprings.org/QS2/programs/" rel="nofollow">http://www.quailsprings.org/QS2/programs/</a></p>
<p>Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-319233</guid>
					<title><![CDATA[Reply To: Overlay transparent color over background image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-319233</link>
					<pubDate>Thu, 02 Jul 2015 13:14:53 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>Kindly replace the javascript code with this.</p>
<pre><code>
jQuery(function($){
    $( &quot;#x-section-1&quot; ).wrapInner( &quot;&lt;div class=&#039;section-overlay&#039;&gt;&lt;/div&gt;&quot; );
});
</code></pre>
<p>Then replace css code with this.</p>
<pre><code>
.section-overlay {
  background-color: rgba(0,0,0,.5);
   width: 100%;
  height: 100%;
 
}
</code></pre>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-319372</guid>
					<title><![CDATA[Reply To: Overlay transparent color over background image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-319372</link>
					<pubDate>Thu, 02 Jul 2015 16:30:29 +0000</pubDate>
					<dc:creator>threeoten</dc:creator>

					<description>
						<![CDATA[
						<p>That&#8217;s the one! Thanks for all your help!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-319649</guid>
					<title><![CDATA[Reply To: Overlay transparent color over background image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-transparent-color-over-background-image/#post-319649</link>
					<pubDate>Thu, 02 Jul 2015 22:12:51 +0000</pubDate>
					<dc:creator>Lely</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re welcome!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

