<?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>Create fullscreen background image on any page &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/feed/</link>
		<description></description>
		<lastBuildDate>Sun, 19 Oct 2025 22:26:12 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-259908</guid>
					<title><![CDATA[Create fullscreen background image on any page]]></title>
					<link>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-259908</link>
					<pubDate>Mon, 27 Apr 2015 21:03:24 +0000</pubDate>
					<dc:creator>Philip Stancil</dc:creator>

					<description>
						<![CDATA[
						<blockquote><p>This is a follow-up post to <a href="https://theme.co/x/member/forums/topic/full-screen-background-image-behind-the-nav-bar-and-my-first-content-band/" rel="nofollow">https://theme.co/x/member/forums/topic/full-screen-background-image-behind-the-nav-bar-and-my-first-content-band/</a>. This post is to show fellow Xers how to create a fullscreen background image on any page.</p></blockquote>
<p><img decoding="async" src="https://dl.dropboxusercontent.com/u/3274947/themeco%20forum%20-%20fullscreen%20bg%20image.png" alt="An example of a website with a fullscreen background image" /></p>
<p>X used to natively support fullscreen background images on a per-page basis, but somewhere along the way that feature was deprecated (though it should be brought back posthaste!). The good news is you can still get the same effect by following this guide.</p>
<p>The following code will need to be added to your child theme&#8217;s style.css file if you&#8217;re comfortable with FTP. Otherwise, add it to your Customizer&#8217;s CSS in the WordPress backend (<strong>Appearance &gt; Customize &gt; Custom &gt; CSS</strong>).</p>
<pre><code>/* Home - header transparent for fullscreen bg image */
.home.x-navbar-fixed-top-active .masthead {
    position: absolute;
    top: 0;
    width: 100%;
}

.home.x-navbar-fixed-top-active .x-navbar {
    background-color: transparent;
	border-bottom:none;
}

.x-logobar {
	background-color:transparent;
}

.home.x-navbar-fixed-top-active .x-navbar.x-navbar-fixed-top {
	background-color:#ffffff;
	border-bottom:1px solid #ccc;
}
</code></pre>
<p>I&#8217;m using the Integrity stack in this particular instance, so it&#8217;s important to note that you will need to go through and tweak this code to your particular use case. For instance, you&#8217;ll notice that I have .home in the code above because I&#8217;m editing the home page. Each page will have a custom post class that you can target. X adds .home to homepages, but to target other pages, you&#8217;ll need to find its post ID. This YouTube video will help you find it: <a href="https://www.youtube.com/watch?v=fLg2T1AvmFE" rel="nofollow">https://www.youtube.com/watch?v=fLg2T1AvmFE</a>. Once you&#8217;ve found the post ID number, you can create your CSS class by writing &#8216;post-####&#8217; where &#8216;####&#8217; is your number. So, to be incredibly thorough, a post with an ID of 14 would be targeted in your CSS by writing &#8216;.post-14&#8217;.</p>
<p>Once you&#8217;ve done that, you&#8217;ll also probably want to make sure that your logo file is a PNG, not a JPG, to maintain transparency since JPG doesn&#8217;t support transparency. That&#8217;ll give you a prettier result than a logo with a white background on top of a fullscreen background image! In X, you set your logo in <strong>Appearance &gt; Customize &gt; Header &gt; Logo</strong>.</p>
<p>The next step is to go create a slider in Slider Revolution. If you haven&#8217;t already installed the plugin, no worries &#8211; it comes free with X. Navigate to <strong>Addons &gt; Extensions</strong>. You&#8217;ll find Slider Revolution listed there, and you can install it with ease. This YouTube playlist by ThemePunch (the makers of Slider Revolution) will help you with the basics of creating a slider. So, go ahead and create a new slider. When creating the slider, there are a few useful tweaks to make to the Slider Settings:</p>
<p><img decoding="async" src="https://dl.dropboxusercontent.com/u/3274947/themeco%20forum%20-%20slider%20settings.png" alt="X theme fullscreen background image - Slider Revolution settings" /></p>
<ol>
<li>Set the Slider Layout to &#8216;Full Screen&#8217;</li>
<li>Navigate to &#8216;Loop and Progress in the right sidebar. Set &#8216;Stop Slider&#8217; to &#8216;On&#8217;.</li>
<li>Set &#8216;Stop at Slide&#8217; to 1</li>
<li>Set &#8216;Show Progressbar&#8217; to &#8216;Hide&#8217;</li>
<li>Set &#8216;Loop Single Slide&#8217; to &#8216;Off&#8217;</li>
</ol>
<p>Now, save all that. You&#8217;ll find yourself on a screen showing you all your slides, or lack thereof. </p>
<ol>
<li>Click the blue &#8216;New Slide&#8217; button. It&#8217;ll ask you for an image. This is where you add the background image you want to use for your page.</li>
<li>Once that&#8217;s done, click the green &#8216;Edit Slide&#8217; button.</li>
<li>In the &#8216;General Slide Settings&#8217; section, select Transitions. Turn off &#8216;Random Flat and Premium&#8217;. Turn on &#8216;Fade&#8217; or &#8216;No Transition&#8217;. This is a personal choice, so do as you deem appropriate for your project.</li>
<li>Click the green &#8216;Update Slide&#8217; button at the bottom of the screen.
</li>
</ol>
<p><strong>Alright, we&#8217;re almost done!</strong></p>
<p>In the WordPress backend, edit the page where you want to add the fullscreen background image. Scroll down below the main body text input box (or Visual Composer, if you&#8217;re using it). Scroll down and you&#8217;ll find &#8216;Slider Settings: Below Masthead&#8217;. Select the slider you want to use. New options will appear below that dropdown. The &#8216;Enable Scroll Bottom Anchor&#8217; will create a down arrow on the screen to help people realize there&#8217;s more content below the fullscreen image. You can decide if your viewers will need that or not. If you use it, the &#8216;Scroll Bottom Anchor Alignment&#8217; is another setting you&#8217;ll want to look at. That setting will let you choose where to place the scroll down arrow. I generally use &#8216;Bottom Center&#8217;. The &#8216;Scroll Bottom Anchor Color&#8217; and the &#8216;Scroll Bottom Anchor Color Hover&#8217; let you choose what color to make the arrow.</p>
<p>You&#8217;re done! After you&#8217;ve gone through all those settings, hit the blue &#8216;Update&#8217; button and go check out the results of your work!</p>
<p>I put this guide together because it seems like a very popular feature, and it took me a bit of searching and working to settle on this solution. I hope you like it, and I hope Theme.co will consider adding it to the Knowledge Base. Even better would be a simple option on each page to create a fullscreen background image, but that&#8217;s another story! Thanks for reading.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-260028</guid>
					<title><![CDATA[Reply To: Create fullscreen background image on any page]]></title>
					<link>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-260028</link>
					<pubDate>Tue, 28 Apr 2015 00:29:05 +0000</pubDate>
					<dc:creator>Prasant Rai</dc:creator>

					<description>
						<![CDATA[
						<p>Hello Philip,</p>
<p>We thank you to creating a detailed tutorial for our users. Thank you for great work 🙂</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-270490</guid>
					<title><![CDATA[Reply To: Create fullscreen background image on any page]]></title>
					<link>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-270490</link>
					<pubDate>Mon, 11 May 2015 05:52:39 +0000</pubDate>
					<dc:creator>Philip Stancil</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re welcome!</p>
<p>I mentioned a ThemePunch YouTube playlist link in the article, but forgot to link to it. Here it is: <a href="https://www.youtube.com/playlist?list=PLSCdqDWVMJPNfL70ym3rCF9QwqgXr4k_2" rel="nofollow">https://www.youtube.com/playlist?list=PLSCdqDWVMJPNfL70ym3rCF9QwqgXr4k_2</a>.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-270491</guid>
					<title><![CDATA[Reply To: Create fullscreen background image on any page]]></title>
					<link>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-270491</link>
					<pubDate>Mon, 11 May 2015 05:56:53 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks again Philip.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-288838</guid>
					<title><![CDATA[Reply To: Create fullscreen background image on any page]]></title>
					<link>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-288838</link>
					<pubDate>Mon, 01 Jun 2015 17:46:14 +0000</pubDate>
					<dc:creator>Philip Stancil</dc:creator>

					<description>
						<![CDATA[
						<p>Hey! I&#8217;ve just noticed that there&#8217;s an issue with my implementation of fullscreen background images. When using the Scroll Bottom Anchor, it adds the height of the logo to the amount it scrolls down, so it effectively scrolls past content I want the viewer to see. You can currently see an example of this at <a href="http://848.549.myftpupload.com/" rel="nofollow">http://848.549.myftpupload.com/</a>, at least until I fix it! If you guys have any suggestions, I&#8217;d appreciate it! I understand if this is outside the scope of support, as it&#8217;s a bug based on my customizations. I&#8217;m just not a JavaScript guy, so I&#8217;m up a creek. If I figure out a solution, I post it back here for others.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-289436</guid>
					<title><![CDATA[Reply To: Create fullscreen background image on any page]]></title>
					<link>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-289436</link>
					<pubDate>Tue, 02 Jun 2015 05:45:14 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Philip,</p>
<p>You can try adding .masthead as your offset container under revslider settings.</p>
<p><a href="http://screencast.com/t/fHWLxUQKZOj" rel="nofollow">http://screencast.com/t/fHWLxUQKZOj</a></p>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-294500</guid>
					<title><![CDATA[Reply To: Create fullscreen background image on any page]]></title>
					<link>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-294500</link>
					<pubDate>Sat, 06 Jun 2015 18:55:25 +0000</pubDate>
					<dc:creator>Philip Stancil</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks for the thought! Unfortunately, doing that or using Offset Size both actually decrease the full height of the &#8216;fullscreen&#8217; slider by the size of .masthead, so when the page loads, if the masthead section is 200px tall, then the bottom 200px of the screen is whatever content comes after what is supposed to be a fullscreen slider, if that makes sense. So it doesn&#8217;t resolve the issue, but rather exascerbates it.</p>
<p>Is it possible that tweaking the JavaScript for the Scroll Bottom Anchor function? I really don&#8217;t know my way around that code, so if you can suggest anything that might help, I&#8217;d be grateful!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-295246</guid>
					<title><![CDATA[Reply To: Create fullscreen background image on any page]]></title>
					<link>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-295246</link>
					<pubDate>Sun, 07 Jun 2015 23:21:24 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Header area is always part of scroll positioning. That&#8217;s because it&#8217;s always there, except at your site&#8217;s case.</p>
<p>I inspect the code and it still there. Why not use Blank template with no header?</p>
<p>Or maybe add this css,</p>
<pre><code>.home.x-navbar-static-active .masthead {
height: 0px;
}</code></pre>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-295406</guid>
					<title><![CDATA[Reply To: Create fullscreen background image on any page]]></title>
					<link>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-295406</link>
					<pubDate>Mon, 08 Jun 2015 04:41:17 +0000</pubDate>
					<dc:creator>Philip Stancil</dc:creator>

					<description>
						<![CDATA[
						<p>That did it! The code you supplied fixed it, though in my case it was fixed-top, not static, so it looked like this:</p>
<pre><code>.home.x-navbar-fixed-top-active .masthead {
   height:0px;
}</code></pre>
<p>Thanks for the amazing support as usual! Wish I could update the code at the beginning of the thread. Hopefully people read down this far.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-295649</guid>
					<title><![CDATA[Reply To: Create fullscreen background image on any page]]></title>
					<link>https://theme.co/archive/forums/topic/create-fullscreen-background-image-on-any-page/#post-295649</link>
					<pubDate>Mon, 08 Jun 2015 10:20:38 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>You are welcome and thanks for sharing.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

