<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>responsive menu Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/tag/responsive-menu/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/tag/responsive-menu/</link>
	<description>Code Solution</description>
	<lastBuildDate>Tue, 18 May 2021 09:45:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>

<image>
	<url>https://codeplaners.com/wp-content/uploads/2020/09/cropped-favicon-social-32x32.png</url>
	<title>responsive menu Archives - Codeplaners</title>
	<link>https://codeplaners.com/tag/responsive-menu/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to create responsive menu</title>
		<link>https://codeplaners.com/how-to-create-responsive-menu/</link>
					<comments>https://codeplaners.com/how-to-create-responsive-menu/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 18 May 2021 09:45:37 +0000</pubDate>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[responsive menu]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=723</guid>

					<description><![CDATA[<p>Hi, Today, i we will show you How to create responsive menu. This article will give you simple example of How to create responsive menu. you will learn How to create responsive menu. So let&#8217;s follow few step to create example of How to create responsive menu.</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-responsive-menu/">How to create responsive menu</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi,</p>
<p>Today, i we will show you How to create responsive menu. This article will give you simple example of How to create responsive menu. you will learn How to create responsive menu. So let&#8217;s follow few step to create example of How to create responsive menu.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;html&gt;
&lt;head&gt;
	&lt;title&gt;How to create responsive menu - CodePlaners.com&lt;/title&gt;
	&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;
	&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/style.css&quot;&gt;
	&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;style&gt;
nav ul{
	padding: 2px;
	margin: 0px;
	position: absolute;
	background-color: #fff;
}
nav ul li{
	margin: 5px;
	float: left;
	list-style: none;
	line-height: 30px;
	position: relative;
	border: 1px solid #078EE5;
	background-color: #078EE5;
}
nav ul li:hover{
	margin: 5px;
	color: #078EE5;
	background-color: #fff;
	border: 1px solid #078EE5;
}
nav ul li:hover &gt; a{
	color: #078EE5;
}
nav ul li a{
	color: #fff;
	padding: 10px;
	text-decoration: none;
}
.mobile-menu{
	background-color: red;
	position: relative;
	display: none;
}
.bars{
  width: 35px;
  height: 5px;
  background-color: #fff;
  margin: 3px 0;
}
@media (max-width: 640px) {
.mobile-menu{
	display: grid;
	background-color: #078EE5;
	color: #fff;
	padding: 5px 10px;
	cursor: pointer;
}
.mobile-menu img{
	width: 25px;
	top: 2px;
	right: 10px;
	position: absolute;
}
nav{
	position: relative;
	height: auto;
}
nav ul{
	display: none;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 99%; 
	top: 0;
	position: absolute;
}
nav ul li{ 
	width: 92%;
	position: relative;
	padding: 5px;
	background-color: #078EE5;
	cursor: pointer;
}
}
&lt;/style&gt;
&lt;body&gt;
	&lt;div class=&quot;mobile-menu&quot; id=&quot;mobile-menu&quot;&gt; 
		&lt;span class=&quot;bars&quot;&gt;&lt;/span&gt;
        &lt;span class=&quot;bars&quot;&gt;&lt;/span&gt;
        &lt;span class=&quot;bars&quot;&gt;&lt;/span&gt;
	&lt;/div&gt;
	&lt;nav&gt;
		&lt;ul&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;About us&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Services&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Conatct Us&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/nav&gt;
	&lt;script type=&quot;text/javascript&quot;&gt;
	$(function() {
        var pull = $('#mobile-menu');
        menu = $('nav ul');
        menuHeight = menu.height();
        $(pull).on('click', function(e) {
            e.preventDefault();
            menu.slideToggle();
        });
        $(window).resize(function() {
            var w = $(window).width();
            if (w &gt; 320 &amp;&amp; menu.is(':hidden')) {
                menu.removeAttr('style');
            }
        });
    });
	&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-responsive-menu/">How to create responsive menu</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-create-responsive-menu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
