<?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>How to Overlap Navbar and Slider &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/feed/</link>
		<description></description>
		<lastBuildDate>Tue, 14 Oct 2025 06:10:39 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-117537</guid>
					<title><![CDATA[How to Overlap Navbar and Slider]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-117537</link>
					<pubDate>Thu, 02 Oct 2014 19:54:04 +0000</pubDate>
					<dc:creator>Jacob L</dc:creator>

					<description>
						<![CDATA[
						<p>Hey there, </p>
<p>I was wondering how exactly to make the slider overlap with the navbar, like this website:</p>
<p><a href="http://theme.co/blog/seven-key-elements-of-a-successful-wordpress-website-part-1/" rel="nofollow">http://theme.co/blog/seven-key-elements-of-a-successful-wordpress-website-part-1/</a></p>
<p>I&#8217;m guessing it has to do with manually moving the slider with css in customizer, but I could use some guidance. Much appreciated!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-117619</guid>
					<title><![CDATA[Reply To: How to Overlap Navbar and Slider]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-117619</link>
					<pubDate>Thu, 02 Oct 2014 21:42:22 +0000</pubDate>
					<dc:creator>Nabeel A</dc:creator>

					<description>
						<![CDATA[
						<p>Hey Jacob,</p>
<p>Thanks for writing in! To assist you with this issue, we&#8217;ll first need you to provide us with your URL as stated on the forum entrance page. 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>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-117636</guid>
					<title><![CDATA[Reply To: How to Overlap Navbar and Slider]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-117636</link>
					<pubDate>Thu, 02 Oct 2014 22:12:56 +0000</pubDate>
					<dc:creator>Jacob L</dc:creator>

					<description>
						<![CDATA[
						<p>Sorry about that. </p>
<p>The current test area i&#8217;m working on is</p>
<p><a href="http://www.lowenthal-hawaii.dreamhosters.com" rel="nofollow">http://www.lowenthal-hawaii.dreamhosters.com</a></p>
<p>Also FYI I was inspired by the link I originally posted, the current setup for the above link isn&#8217;t an attempt, it&#8217;s a separate setup altogether&#8230;.but I was interested in emulating the link I originally posted because it looks great. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-117774</guid>
					<title><![CDATA[Reply To: How to Overlap Navbar and Slider]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-117774</link>
					<pubDate>Fri, 03 Oct 2014 06:45:03 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Jacob,</p>
<p>You can add this under <strong>Custom &gt; CSS</strong> in the <strong>Customizer</strong>.</p>
<pre><code>
/* To make it overlap with slider */
.masthead.masthead-inline {
   position: fixed;
   z-index: 9999;
   width: 100%;
   top: 0;
   background: transparent;
}

/* To make background transparent */
.x-navbar {
   background:transparent;
   box-shadow:none;
}

/* To change color of navigation links */
.x-nav &gt; li &gt; a {
   color:#fff;
}

/* To change color of navigation links when hover */
.x-nav &gt; li &gt; a:hover {
   color:#fff;
}
</code></pre>
<p>The codes are labeled for what it does.<br />
Feel free to change the code.</p>
<p>Hope it helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-120252</guid>
					<title><![CDATA[Reply To: How to Overlap Navbar and Slider]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-120252</link>
					<pubDate>Tue, 07 Oct 2014 02:08:09 +0000</pubDate>
					<dc:creator>Jacob L</dc:creator>

					<description>
						<![CDATA[
						<p>Perfect. Thanks so much! You&#8217;re on top of it. 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-120370</guid>
					<title><![CDATA[Reply To: How to Overlap Navbar and Slider]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-120370</link>
					<pubDate>Tue, 07 Oct 2014 07:42:17 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-375778</guid>
					<title><![CDATA[Reply To: How to Overlap Navbar and Slider]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-375778</link>
					<pubDate>Tue, 01 Sep 2015 18:02:32 +0000</pubDate>
					<dc:creator>Joe</dc:creator>

					<description>
						<![CDATA[
						<p>Hi, this seems to work great for me accept I have a problem with the nav bar overlapping the top bar when scrolling. How can I  keep the the navigation and hide the nav bar when scrolling normally. Or how can I keep the top bar present without the nav overlapping it  <a href="http://www.studio5media.com" rel="nofollow">http://www.studio5media.com</a><br />
Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-375903</guid>
					<title><![CDATA[Reply To: How to Overlap Navbar and Slider]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-overlap-navbar-and-slider/#post-375903</link>
					<pubDate>Tue, 01 Sep 2015 20:52:34 +0000</pubDate>
					<dc:creator>Jade</dc:creator>

					<description>
						<![CDATA[
						<p>Hello there,</p>
<p>To make the nav bar and top bar scroll normally, you may go to <strong>Appearance </strong>&gt; <strong>Customize </strong>&gt;  <strong>Header </strong>&gt; <strong>Navbar Position</strong> &gt; <strong>Select: Static Top</strong>.</p>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

