<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Support Forum - Topic: Landing pages without the header section?</title>
		<link>http://www.kriesi.at/support/topic/landing-pages-without-the-header-section</link>
		<description>Support Forum - Topic: Landing pages without the header section?</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 20:36:34 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/landing-pages-without-the-header-section" rel="self" type="application/rss+xml" />

		<item>
			<title>Nick on "Landing pages without the header section?"</title>
			<link>http://www.kriesi.at/support/topic/landing-pages-without-the-header-section#post-85167</link>
			<pubDate>Fri, 23 Nov 2012 19:48:52 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">85167@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Please try this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.header_meta {
display: none !important;
}
.logo.bg-logo {
display: none !important;
}
.main_menu {
display: none !important;
}
#footer {
display: none !important;
}
#socket {
display: none !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Since I don't know which page you are trying to apply the style to I can't target it further. If you know which page, please view the source from your browser and paste the entire body tag here, and I can be more specific with the css&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>csandstedt on "Landing pages without the header section?"</title>
			<link>http://www.kriesi.at/support/topic/landing-pages-without-the-header-section#post-84896</link>
			<pubDate>Wed, 21 Nov 2012 15:55:55 +0000</pubDate>
			<dc:creator>csandstedt</dc:creator>
			<guid isPermaLink="false">84896@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ismael, I tried your code and I'm still seeing the main menu on my landing pages. Any ideas?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Landing pages without the header section?"</title>
			<link>http://www.kriesi.at/support/topic/landing-pages-without-the-header-section#post-84658</link>
			<pubDate>Tue, 20 Nov 2012 01:52:40 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">84658@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;If your intention is to hide the menus you can do some conditional tags. Open header.php and find this code&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;quot;&#38;lt;div class=&#38;#39;main_menu&#38;#39; data-selectname=&#38;#39;&#38;quot;.__(&#38;#39;Select a page&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;;
						$args = array(&#38;#39;theme_location&#38;#39;=&#38;gt;&#38;#39;avia&#38;#39;, &#38;#39;fallback_cb&#38;#39; =&#38;gt; &#38;#39;avia_fallback_menu&#38;#39;);
						wp_nav_menu($args);
						echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace it with&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if ( !is_page( &#38;#39;Landing Page&#38;#39; ) ) {
						echo &#38;quot;&#38;lt;div class=&#38;#39;main_menu&#38;#39; data-selectname=&#38;#39;&#38;quot;.__(&#38;#39;Select a page&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;;
						$args = array(&#38;#39;theme_location&#38;#39;=&#38;gt;&#38;#39;avia&#38;#39;, &#38;#39;fallback_cb&#38;#39; =&#38;gt; &#38;#39;avia_fallback_menu&#38;#39;);
						wp_nav_menu($args);
						echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;
						};&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The code means, if it is not the &#34;Landing Page&#34; echo or render the main menu. You can do the same with the logo.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>csandstedt on "Landing pages without the header section?"</title>
			<link>http://www.kriesi.at/support/topic/landing-pages-without-the-header-section#post-84554</link>
			<pubDate>Mon, 19 Nov 2012 12:50:51 +0000</pubDate>
			<dc:creator>csandstedt</dc:creator>
			<guid isPermaLink="false">84554@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm looking at testing a new service using landing pages with &#34;fake doors&#34; but I don't want the visitor to be able to access the rest of the site with the navigation links in the header menu. Basically, I just want the ability to create a template that excludes everything above the header menu so that I'm starting with a clean slate. How can I accomplish this?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
