<?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 post title over featured image &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/feed/</link>
		<description></description>
		<lastBuildDate>Mon, 13 Oct 2025 13:59:46 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278304</guid>
					<title><![CDATA[Overlay post title over featured image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278304</link>
					<pubDate>Thu, 21 May 2015 01:38:18 +0000</pubDate>
					<dc:creator>Andrew</dc:creator>

					<description>
						<![CDATA[
						<p>Is there a way to do this with CSS?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278376</guid>
					<title><![CDATA[Reply To: Overlay post title over featured image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278376</link>
					<pubDate>Thu, 21 May 2015 03:29:18 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thanks for posting.</p>
<p>Depends on site&#8217;s structure. What stack you&#8217;re on? Would you mind providing some url where you wish to apply this?</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278386</guid>
					<title><![CDATA[Reply To: Overlay post title over featured image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278386</link>
					<pubDate>Thu, 21 May 2015 03:54:14 +0000</pubDate>
					<dc:creator>Andrew</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278428</guid>
					<title><![CDATA[Reply To: Overlay post title over featured image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278428</link>
					<pubDate>Thu, 21 May 2015 04:52:36 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Thanks! I&#8217;m assuming you&#8217;re referring to recent posts at your home page. In that case, please add this css 😉</p>
<pre><code>.x-recent-posts a {
  position: relative;
}
.x-recent-posts .h-recent-posts {
  position: absolute;
  z-index: 9999;
  margin-top: -50px;
  background-color: rgba(255,255,255,0.7);
  width: 100%;
  left: 0;
  padding: 10px;
}</code></pre>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278447</guid>
					<title><![CDATA[Reply To: Overlay post title over featured image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278447</link>
					<pubDate>Thu, 21 May 2015 05:34:52 +0000</pubDate>
					<dc:creator>Andrew</dc:creator>

					<description>
						<![CDATA[
						<p>No, I mean when you view a specific post, I&#8217;d like to overlay the title on the featured image.</p>
<p>For example: <a href="https://wordpress.org/plugins/wysija-newsletters/" rel="nofollow">https://wordpress.org/plugins/wysija-newsletters/</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278454</guid>
					<title><![CDATA[Reply To: Overlay post title over featured image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278454</link>
					<pubDate>Thu, 21 May 2015 05:59:02 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>In that case, please replace the code with this.</p>
<pre><code>
.single-post .entry-title {
  border-radius: 10px;
  position: relative;
  margin-top: -100px;
  z-index: 9999;
  margin-bottom: 30px;
  margin-left: 30px;
  background: #000;
  width: auto;
  float: left;
  color: #fff;
  padding: 10px;
}
</code></pre>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278636</guid>
					<title><![CDATA[Reply To: Overlay post title over featured image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278636</link>
					<pubDate>Thu, 21 May 2015 11:39:35 +0000</pubDate>
					<dc:creator>Andrew</dc:creator>

					<description>
						<![CDATA[
						<p>PERFECT! Thank you!!!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278651</guid>
					<title><![CDATA[Reply To: Overlay post title over featured image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-278651</link>
					<pubDate>Thu, 21 May 2015 12:09:26 +0000</pubDate>
					<dc:creator>John Ezra</dc:creator>

					<description>
						<![CDATA[
						<p>You’re most welcome!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-395269</guid>
					<title><![CDATA[Reply To: Overlay post title over featured image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-395269</link>
					<pubDate>Fri, 18 Sep 2015 19:59:03 +0000</pubDate>
					<dc:creator>Michael Burton, CFP®</dc:creator>

					<description>
						<![CDATA[
						<p>I think I am asking the same question, but just to be sure:  I want to feature one to three single images on the home page of my blog.  I would like the option to have the title of the post overlay on top of the image.  Is the way to do this to use the css code above?</p>
<p>If so, what is it going to look like?  Can you point me to a sample page that is using the same CSS code?</p>
<p>Thanks so much!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-395457</guid>
					<title><![CDATA[Reply To: Overlay post title over featured image]]></title>
					<link>https://theme.co/archive/forums/topic/overlay-post-title-over-featured-image/#post-395457</link>
					<pubDate>Sat, 19 Sep 2015 02:09:11 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Thanks for updating this thread! The code that is working for Andrew is only applicable in single post. As I understand, you want something that will be in your blog page. </p>
<p>At this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.</p>
<p>To assist you with the issue, it would be much better if you also provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

