<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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>THE MOLITOR FORUMS &#187; Topic: How to add the word MENU to the hamburger lines</title>
		<link>http://www.themolitor.com/forums/topic/how-to-add-the-word-menu-to-the-hamburger-lines</link>
		<description>THE MOLITOR FORUMS &#187; Topic: How to add the word MENU to the hamburger lines</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 23:32:40 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/how-to-add-the-word-menu-to-the-hamburger-lines" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "How to add the word MENU to the hamburger lines"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-add-the-word-menu-to-the-hamburger-lines#post-41834</link>
			<pubDate>Tue, 25 Jul 2017 10:59:50 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">41834@http://www.themolitor.com/forums/</guid>
			<description><p>I see you also posted here: <a href="http://www.themolitor.com/forums/topic/increase-page-height" rel="nofollow">http://www.themolitor.com/forums/topic/increase-page-height</a></p>
<p>Let's continue chatting about this topic over there.</p>
<p>Best,</p>
<p>Christopher
</p></description>
		</item>
		<item>
			<title>samgosper on "How to add the word MENU to the hamburger lines"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-add-the-word-menu-to-the-hamburger-lines#post-41818</link>
			<pubDate>Wed, 19 Jul 2017 21:41:30 +0000</pubDate>
			<dc:creator>samgosper</dc:creator>
			<guid isPermaLink="false">41818@http://www.themolitor.com/forums/</guid>
			<description><p>oh ok haha. </p>
<p>Christopher one question- I wish to extend the front page height so fit various banners that can click through to different film pages. The issue is the page by default only scrolls so far. What do I need to edit to extend the length of the page so all banners can display without falling into the footer? thanks!
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "How to add the word MENU to the hamburger lines"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-add-the-word-menu-to-the-hamburger-lines#post-41813</link>
			<pubDate>Wed, 19 Jul 2017 09:23:36 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">41813@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Adding the word "MENU" is actually a theme option now (v 1.0.5 - Jan 2017). Navigate to the Customize page and in "site identity" is a checkbox for "Display 'MENU' Text Link".</p>
<p>Best,</p>
<p>Christopher
</p></description>
		</item>
		<item>
			<title>samgosper on "How to add the word MENU to the hamburger lines"</title>
			<link>http://www.themolitor.com/forums/topic/how-to-add-the-word-menu-to-the-hamburger-lines#post-41807</link>
			<pubDate>Tue, 18 Jul 2017 21:32:28 +0000</pubDate>
			<dc:creator>samgosper</dc:creator>
			<guid isPermaLink="false">41807@http://www.themolitor.com/forums/</guid>
			<description><p>Hey guys,</p>
<p>Just thought I would update all how to place the word MENU next to the lines that open up the menu. I found out how to do this myself and have had so many people contact me about it. </p>
<p>Open up Theme Header (header.php) in WP editor, find MENU CONTROL.</p>
<p>Here is the code: </p>
<p>&#60;!--MENU CONTROL--&#62;<br />
&#60;div id="menu-control"&#62;&#60;p style="margin-left:-80px;margin-top:2px;"&#62;MENU&#60;/p&#62;&#60;SPAN&#62;&#60;/span&#62;&#60;/div&#62;</p>
<p>Where MENU is in capitals, is what the word shall be next to the lines. </p>
<p>Its been a while so I can't remember if this alone will place it perfectly next to the lines, if it's not in line just change the margins until you get it right.</p>
<p>You MAY have to also open up the css style sheet and go to MAIN NAVIGATION STUFF, there's a bunch of menu control options there to control font size etc, so here is a copy paste of my settings there as well:</p>
<p>#menu-control {<br />
	color: #fff;<br />
    font-size: 27px;<br />
    position: absolute;<br />
    right: 20px;<br />
    top: 35px;<br />
    z-index: 101;<br />
    cursor: pointer;<br />
    display: block;<br />
    height: 10px;<br />
    width: 30px;<br />
	border-top: 10px solid #fff;</p>
<p> 	display: block;</p>
<p> 	border: none;<br />
 	height: 50px;<br />
 	top: 10px;<br />
 	outline:10px solid transparent;<br />
 }<br />
#menu-control span {<br />
	height: 2px;<br />
	width: 30px;<br />
	display: block;<br />
	position: absolute;<br />
	top: 50%;<br />
	left:0%;<br />
	background: #fff;<br />
	margin-top: -1px; </p>
<p>	-webkit-transition: background 0 0.3s;<br />
          	transition: background 0 0.3s;<br />
}<br />
#menu-control span::before,<br />
#menu-control span::after {<br />
	content: '';<br />
	position: absolute;<br />
	left: 0;<br />
	height: 2px;<br />
	width: 100%;<br />
	background: #fff;<br />
	display:<br />
	-webkit-transition:bottom 0.30s linear,top 0.30s linear;<br />
 	-moz-transition:bottom 0.30s linear,top 0.30s linear;<br />
 	-o-transition:bottom 0.30s linear,top 0.30s linear;<br />
 	transition:bottom 0.30s linear,top 0.30s linear; ; </p>
<p> 	-webkit-transition-duration: 0.3s, 0.3s;<br />
 	-moz-transition-duration: 0.3s, 0.3s;<br />
	transition-duration: 0.3s, 0.3s;</p>
<p>  	-webkit-transition-delay: 0.3s, 0;<br />
  	-moz-transition-delay: 0.3s, 0;<br />
	transition-delay: 0.3s, 0;<br />
}<br />
#menu-control span::before {<br />
	top: -8px;<br />
	-webkit-transition-property: top, -webkit-transform;<br />
	-moz-transition-property: top, -moz-transform;<br />
	transition-property: top, transform;<br />
}<br />
#menu-control span::after {<br />
	bottom: -8px;<br />
	-webkit-transition-property: bottom, -webkit-transform;<br />
	-moz-transition-property: bottom, -moz-transform;<br />
	transition-property: bottom, transform;</p>
<p>I for one love having the word Menu next to the hamburger lines, many people just are not drawn to it otherwise.
</p></description>
		</item>

	</channel>
</rss>
