<?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>Page Web Design and Development</title>
	<atom:link href="http://pagewebdevelopment.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pagewebdevelopment.com</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 20:04:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Remove the active border from your forms when viewing in Google Chrome</title>
		<link>http://pagewebdevelopment.com/2012/01/17/remove-the-active-border-from-your-forms-when-viewing-in-google-chrome/</link>
		<comments>http://pagewebdevelopment.com/2012/01/17/remove-the-active-border-from-your-forms-when-viewing-in-google-chrome/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 20:01:26 +0000</pubDate>
		<dc:creator>jessica</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pagewebdevelopment.com/?p=1619</guid>
		<description><![CDATA[I was working on a form today and while I was testing it I noticed that Google Chrome decided to add a border on active form fields. Why they do this I do not know nor do I care. All I know is that it is annoying. If I wanted an active border I would &#8230; <a href="http://pagewebdevelopment.com/2012/01/17/remove-the-active-border-from-your-forms-when-viewing-in-google-chrome/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1621" style="margin: 10px;" title="active form " src="http://pagewebdevelopment.com/wp-content/uploads/2012/01/Noname.jpg" alt="" width="214" height="75" /><br />
I was working on a form today and while I was testing it I noticed that Google Chrome decided to add a border on active form fields.</p>
<p>Why they do this I do not know nor do I care. All I know is that it is annoying. If I wanted an active border I would add it myself.</p>
<p>&nbsp;</p>
<p>There is an easy fix to this. Simply add the following code to your style sheet.</p>
<pre>input:focus {
outline:0px;
border:none;
}
textarea:focus {
outline:0px;
border:none;
}</pre>
<p>A little explanation of what you are doing:</p>
<p>focus is the action, when someone is adding text to the form field it is active. So :focus = active.</p>
<p>outline:0px removed the outline and border:none removes the border.</p>
<p>Couldn&#8217;t be simpler.</p>
<p>Yay.</p>
]]></content:encoded>
			<wfw:commentRss>http://pagewebdevelopment.com/2012/01/17/remove-the-active-border-from-your-forms-when-viewing-in-google-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using ASP to change a div or table width when on a specific page</title>
		<link>http://pagewebdevelopment.com/2011/10/13/using-asp-to-change-a-div-or-table-width-when-on-a-specific-page/</link>
		<comments>http://pagewebdevelopment.com/2011/10/13/using-asp-to-change-a-div-or-table-width-when-on-a-specific-page/#comments</comments>
		<pubDate>Thu, 13 Oct 2011 15:37:25 +0000</pubDate>
		<dc:creator>jessica</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://pagewebdevelopment.com/?p=1608</guid>
		<description><![CDATA[In order to change the width of a table or change a div when on a specific page I use the following bit of code. You will need to alter it depending on your needs. &#60;!--Change Table Width when on admin page--&#62;&#60;% 'response.write request.servervariables("script_name") if request.servervariables("script_name") &#60;&#62; "/n-tmenu/admin_menu.asp" then %&#62; &#60;!--end part one --&#62; &#60;td &#8230; <a href="http://pagewebdevelopment.com/2011/10/13/using-asp-to-change-a-div-or-table-width-when-on-a-specific-page/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In order to change the width of a table or change a div when on a specific page I use the following bit of code. You will need to alter it depending on your needs. <code></code></p>
<pre>&lt;!--Change Table Width when on admin page--&gt;&lt;%
'response.write request.servervariables("script_name")
if request.servervariables("script_name") &lt;&gt; "/n-tmenu/admin_menu.asp" then %&gt;
&lt;!--end part one --&gt;
&lt;td valign="top" width="519"&gt;
&lt;% else %&gt;
&lt;td valign="top" width="700"&gt;
&lt;!-- change table width when on admin page part 2--&gt;
&lt;% end if %&gt;
&lt;!--end part two--&gt;</pre>
<p>So, to break it down, this is the name of the page you want the rule to take effect on.</p>
<pre>"/n-tmenu/admin_menu.asp"</pre>
<p>This (519)  is the width that you want the table to be on all ofther occasions.</p>
<pre>&lt;td valign="top" width="519"&gt;</pre>
<p>And this (700) is how you want it on the specific page, in this situation it is my admin page.</p>
<pre>&lt;td valign="top" width="700"&gt;</pre>
<p>Be sure to end your statement and you are good to go. Easy enough to replace the td with a div or whatever else you want.</p>
<pre>&lt;% end if %&gt;</pre>
<p>&nbsp;</p>
<p>Note: If you want to add more than one page, you would change the code to read something like this:</p>
<pre>&lt;!--hide the address box when on admin page part 1 of 2--&gt;

&lt;%
'response.write request.servervariables("script_name")
if request.servervariables("script_name") &lt;&gt; "/n-tmenu/admin_menu.asp"  and request.servervariables("script_name") &lt;&gt; "/contact.asp" then %&gt;
&lt;!--end part one of two--&gt;</pre>
<p>So you are adding:</p>
<pre>and request.servervariables("script_name") &lt;&gt; "/contact.asp"</pre>
<p>in between the first page and the &#8220;then&#8221;</p>
<p>There you have it.</p>
<p>Nifty. Have fun coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://pagewebdevelopment.com/2011/10/13/using-asp-to-change-a-div-or-table-width-when-on-a-specific-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Javascript to  Fade Out The Input Text</title>
		<link>http://pagewebdevelopment.com/2011/07/27/using-javascript-to-fade-out-the-input-text/</link>
		<comments>http://pagewebdevelopment.com/2011/07/27/using-javascript-to-fade-out-the-input-text/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 18:24:18 +0000</pubDate>
		<dc:creator>jessica</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[fade out input text]]></category>
		<category><![CDATA[form input]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[input]]></category>
		<category><![CDATA[name]]></category>
		<category><![CDATA[using javascript with forms]]></category>

		<guid isPermaLink="false">http://pagewebdevelopment.com/?p=1598</guid>
		<description><![CDATA[&#60;form name="signup" action="/signup.asp" method="get"&#62; &#60;input name="Name" type="text" value="Name..." onfocus="javascript:document.signup.Name.value='';" /&#62; &#60;input  name="Email" type="text" value="E-mail..." onfocus="javascript:document.signup.Email.value='';"  /&#62; &#60;input alt="Sign-Up" onmouseover="javascript:this.src='/images/btn_signup_alt.jpg';" onmouseout="javascript:this.src='/images/btn_signup.gif';" name="Sign-Up" src="/images/btn_signup.gif" type="image" /&#62; &#60;/form&#62; &#160; Breakdown: onfocus="javascript:document.formname.name.value='';" onfocus="javascript:document.signup.Name.value='';" onfocus="javascript:document.signup.Email.value='';" &#160;]]></description>
			<content:encoded><![CDATA[<pre>&lt;form name="signup" action="/signup.asp" method="get"&gt;
&lt;input name="Name" type="text" value="Name..." onfocus="javascript:document.signup.Name.value='';" /&gt;
&lt;input  name="Email" type="text" value="E-mail..." onfocus="javascript:document.signup.Email.value='';"  /&gt;
&lt;input alt="Sign-Up" onmouseover="javascript:this.src='/images/btn_signup_alt.jpg';" onmouseout="javascript:this.src='/images/btn_signup.gif';" name="Sign-Up" src="/images/btn_signup.gif" type="image" /&gt;
&lt;/form&gt;</pre>
<p>&nbsp;</p>
<p>Breakdown:<br />
<code></code></p>
<pre>onfocus="javascript:document.formname.name.value='';"

onfocus="javascript:document.signup.Name.value='';"

onfocus="javascript:document.signup.Email.value='';"</pre>
<p>&nbsp;</p>
<p><code></code></p>
]]></content:encoded>
			<wfw:commentRss>http://pagewebdevelopment.com/2011/07/27/using-javascript-to-fade-out-the-input-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer Min-Height Attribute</title>
		<link>http://pagewebdevelopment.com/2011/07/19/internet-explorer-min-height-attribute/</link>
		<comments>http://pagewebdevelopment.com/2011/07/19/internet-explorer-min-height-attribute/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 14:28:45 +0000</pubDate>
		<dc:creator>jessica</dc:creator>
				<category><![CDATA[beginner]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[quick-tips]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[IE Sucks]]></category>
		<category><![CDATA[Internet Explorer min-height]]></category>
		<category><![CDATA[min-height]]></category>

		<guid isPermaLink="false">http://pagewebdevelopment.com/?p=1586</guid>
		<description><![CDATA[While working on a re-design for a client I created a CSS style that had a min-height attibute. The purpose was to have a container that would grow with the content, but if there was less content, it would stay at a certain height. Firefox, Chrome accepted this attribute and it worked like a charm. &#8230; <a href="http://pagewebdevelopment.com/2011/07/19/internet-explorer-min-height-attribute/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While working on a re-design for a client I created a CSS style that had a min-height attibute. The purpose was to have a container that would grow with the content, but if there was less content, it would stay at a certain height. Firefox, Chrome accepted this attribute and it worked like a charm. Then I went to test it in IE. Irgh. Of course IE would not work. After googleing a solution I found a lovely site that explains several options. Here was mine:</p>
<p>&nbsp;</p>
<pre>* html .right_column {
height: expression( this.scrollHeight &lt; 591 ? "592px" : "auto" ); /* sets min-height for IE */
}

.right_column{
min-height: 592px; /* sets min-height value for all standards-compliant browsers */
width: 807px;
margin-top: 1px;
margin-right: 1px;
margin-bottom: 0px;
margin-left: 0px;
background-color: #FFF;
}</pre>
<p>So simply put, using javascript we are able to set the min height in IE. You will notice that the min height 591 592 are not exactily the same. Apparently this is because if they were set the same, IE 6 would crash.</p>
<p>Check out the blog of the author who put some work into this solutuon, <a href="http://perishablepress.com/press/2007/01/16/maximum-and-minimum-height-and-width-in-internet-explorer/" target="_blank">here</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://pagewebdevelopment.com/2011/07/19/internet-explorer-min-height-attribute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Replace, Hover Effect for Form Submit</title>
		<link>http://pagewebdevelopment.com/2011/06/16/1557/</link>
		<comments>http://pagewebdevelopment.com/2011/06/16/1557/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 14:59:53 +0000</pubDate>
		<dc:creator>jessica</dc:creator>
				<category><![CDATA[Forms]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[quick-tips]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[image hover effect]]></category>
		<category><![CDATA[image replace]]></category>
		<category><![CDATA[javascript image replace]]></category>

		<guid isPermaLink="false">http://pagewebdevelopment.com/?p=1557</guid>
		<description><![CDATA[&#160; Today we will be creating a simple image replacement effect for the form submit button. I am just going to place the code now and later I will post an explanation. All you need to do is replace the image location and name with your own. &#60;form method="post"&#62; &#60;input name="User Name" size="15" type="text" value="User &#8230; <a href="http://pagewebdevelopment.com/2011/06/16/1557/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>Today we will be creating a simple image replacement effect for the form submit button. I am just going to place the code now and later I will post an explanation. All you need to do is replace the image location and name with your own.</p>
<pre><code>
&lt;form method="post"&gt;
&lt;input name="User Name" size="15" type="text" value="User Name..." /&gt;
&lt;input name="Password" size="15" type="text" value="Password..." /&gt;
&lt;input onmouseover="javascript:this.src='/images/login_alt.gif';"
onmouseout="javascript:this.src='/images/login.gif';" name="submit"
src="/images/login.gif" type="image" /&gt;
&lt;/form&gt;</code></pre>
<p>Example:</p>
<form method="post"><code>&nbsp;</p>
<input name="User Name" size="15" type="text" value="User Name..." /></code></form>
<form method="post"><code></p>
<input name="Password" size="15" type="text" value="Password..." /></code></form>
<form method="post"><code></p>
<input onmouseover="javascript:this.src='http://pagewebdevelopment.com/tutorials/images/buttons/button_alt.png';" onmouseout="javascript:this.src='http://pagewebdevelopment.com/tutorials/images/buttons/button.png';" name="submit" src="http://pagewebdevelopment.com/tutorials/images/buttons/button.png" type="image" /> </code></form>
<p><code> </code></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://pagewebdevelopment.com/2011/06/16/1557/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a Pause to Your Flash Movie Using Actionscript</title>
		<link>http://pagewebdevelopment.com/2011/06/16/adding-a-pause-to-your-flash-movie-using-actionscript/</link>
		<comments>http://pagewebdevelopment.com/2011/06/16/adding-a-pause-to-your-flash-movie-using-actionscript/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 14:41:41 +0000</pubDate>
		<dc:creator>jessica</dc:creator>
				<category><![CDATA[flash]]></category>
		<category><![CDATA[quick-tips]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[adding a pause]]></category>

		<guid isPermaLink="false">http://pagewebdevelopment.com/?p=1551</guid>
		<description><![CDATA[So you want to add a pause to a frame on your Flash movie? No problem. The first step is to create a new layer and name it actions. Then select the frame where you want the movie to pause. Now add a keyframe and then paste the following into the actionscript panel. Change it &#8230; <a href="http://pagewebdevelopment.com/2011/06/16/adding-a-pause-to-your-flash-movie-using-actionscript/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So you want to add a pause to a frame on your Flash movie? No problem. The first step is to create a new layer and name it actions. Then select the frame where you want the movie to pause. Now add a keyframe and then paste the following into the actionscript panel. Change it for your purposes and you are good to go!<br />
Code:</p>
<pre>function pause(){

play();

clearInterval(timer);

};

stop();

timer = setInterval(pause, 5000);

//where 5000 is 5 seconds or 60000, 1 minute.</pre>
<p>Tip: if you have more than one pause you wish to make, you can add the function to the first frame in the movie and then add the pause code
<pre>(stop())</pre>
<p>to the frame that you wish to pause.</p>
]]></content:encoded>
			<wfw:commentRss>http://pagewebdevelopment.com/2011/06/16/adding-a-pause-to-your-flash-movie-using-actionscript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a Protected Email Link with a Subject Line to an Image</title>
		<link>http://pagewebdevelopment.com/2011/06/16/add-a-protected-email-link-with-a-subject-line/</link>
		<comments>http://pagewebdevelopment.com/2011/06/16/add-a-protected-email-link-with-a-subject-line/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 14:24:06 +0000</pubDate>
		<dc:creator>jessica</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[quick-tips]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[cloaked email link]]></category>
		<category><![CDATA[email link]]></category>
		<category><![CDATA[email subject line]]></category>
		<category><![CDATA[javacsript]]></category>
		<category><![CDATA[supject line]]></category>

		<guid isPermaLink="false">http://pagewebdevelopment.com/?p=1544</guid>
		<description><![CDATA[So you want to create an email link that is protected from the nasty spam bots? All you need to do is use the following code. &#160; &#60;a href="javascript:cloakmailto('first_part_of_email','second_part_of_email_domain.com?subject=My%20Subject');" &#62; &#60;img src="/images/imageofemailme.gif" width="124" height="18" border="0"&#62;&#60;/a&#62; &#160; So if we are using thegreatpumpkin {at} peanuts(.)com as an email address and the email subject will be The &#8230; <a href="http://pagewebdevelopment.com/2011/06/16/add-a-protected-email-link-with-a-subject-line/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So you want to create an email link that is protected from the nasty spam bots? All you need to do is use the following code.</p>
<p>&nbsp;</p>
<p><code></p>
<pre>&lt;a   href="javascript:cloakmailto('first_part_of_email','second_part_of_email_domain.com?subject=My%20Subject');"  &gt;
&lt;img src="/images/imageofemailme.gif" width="124"  height="18" border="0"&gt;&lt;/a&gt;</pre>
<p></code></p>
<p>&nbsp;</p>
<p><code> </code></p>
<p>So if we are using <strong><span style="color: #33cccc;"><span id="emob-gurterngchzcxva@crnahgf.pbz-30">thegreatpumpkin {at} peanuts(.)com</span><script type="text/javascript">
    var mailNode = document.getElementById('emob-gurterngchzcxva@crnahgf.pbz-30');
    var linkNode = document.createElement('a');
    linkNode.setAttribute('href', "mailto:%74%68%65%67%72%65%61%74%70%75%6D%70%6B%69%6E%40%70%65%61%6E%75%74%73%2E%63%6F%6D");
    tNode = document.createTextNode("thegreatpumpkin {at} peanuts(.)com");
    linkNode.appendChild(tNode);
    linkNode.setAttribute('id', "emob-gurterngchzcxva@crnahgf.pbz-30");
    mailNode.parentNode.replaceChild(linkNode, mailNode);
</script></span></strong> as an email address and the email subject will be <strong><span style="color: #33cccc;">The Great Pumpkin is REAL</span></strong>, the code would look like this:</p>
<p>&nbsp;</p>
<p><code></p>
<pre>&lt;a   href="javascript:cloakmailto('thegreatpumpkin','peanuts.com?subject=The%20Great%20Pumpkin%20is%20REAL');"  &gt;&lt;img src="/images/imageofemailme.gif" width="124"  height="18" border="0"&gt;&lt;/a&gt;</pre>
<p></code></p>
<p>&nbsp;</p>
<p><img class="alignleft" title="Note" src="http://pagewebdevelopment.com/tutorials/images/note.png" alt="Note" width="51" height="51" />Note: The %20 is a space.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><code></p>
<pre>%20</pre>
<p></code></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://pagewebdevelopment.com/2011/06/16/add-a-protected-email-link-with-a-subject-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email Cloaking using Javascript</title>
		<link>http://pagewebdevelopment.com/2011/06/14/email-cloaking-using-javascript/</link>
		<comments>http://pagewebdevelopment.com/2011/06/14/email-cloaking-using-javascript/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 13:59:38 +0000</pubDate>
		<dc:creator>jessica</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[quick-tips]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[cloak email]]></category>
		<category><![CDATA[hide email address]]></category>

		<guid isPermaLink="false">http://pagewebdevelopment.com/?p=1530</guid>
		<description><![CDATA[Below is some quick and easy javascript code that will allow you to create an email link that the spam bots will not see easily. The purpose of this code is to create a simple email link with the actual email address showing. &#60;SCRIPT LANGUAGE="JavaScript"&#62; &#60;!-- Begin user = "sales"; site = "domainname.com"; document.write('&#60;a href=\"mailto:' &#8230; <a href="http://pagewebdevelopment.com/2011/06/14/email-cloaking-using-javascript/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Below is some quick and easy javascript code that will allow you to create an email link that the spam bots will not see easily. The purpose of this code is to create a simple email link with the actual email address showing.</p>
<p><code>
<pre>
&lt;SCRIPT LANGUAGE="JavaScript"&gt;
&lt;!-- Begin
user = "sales";
site = "domainname.com";
document.write('&lt;a href=\"mailto:' + user + '@' + site + '\"&gt;');
document.write(user + '@' + site + '&lt;/a&gt;'); // End --&gt; &lt;/SCRIPT&gt;
</pre>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://pagewebdevelopment.com/2011/06/14/email-cloaking-using-javascript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Easy Fixed Floating Menu</title>
		<link>http://pagewebdevelopment.com/2011/06/05/easy-fixed-floating-menu/</link>
		<comments>http://pagewebdevelopment.com/2011/06/05/easy-fixed-floating-menu/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 18:24:53 +0000</pubDate>
		<dc:creator>jessica</dc:creator>
				<category><![CDATA[Menus]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[CSS Fixed Floating Menu]]></category>
		<category><![CDATA[CSS Floating Menu]]></category>
		<category><![CDATA[fixed floating menu]]></category>
		<category><![CDATA[floating menu]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://pagewebdevelopment.com/?p=1490</guid>
		<description><![CDATA[I was recently asked to create a simple floating menu that would stay in a fixed position in the bottom right corner of a web page. After a bit of searching and digging through some more complected menus using css and javascript I found a simple bit of code that was easily customizable. You can&#8217;t &#8230; <a href="http://pagewebdevelopment.com/2011/06/05/easy-fixed-floating-menu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1507" style="border: 1px solid black;" title="Fixed Floating Menu" src="http://pagewebdevelopment.com/wp-content/uploads/2011/06/Picture-14.png" alt="Fixed Floating Menu" width="278" height="162" /></p>
<p>I was recently asked to create a simple floating menu that would stay in a fixed position in the bottom right corner of a web page. After a bit of searching and digging through some more complected menus using css and javascript I found a simple bit of code that was easily customizable. You can&#8217;t beat easy!</p>
<p><a href="http://pagewebdevelopment.com/tutorials/fixed_float_menu/fix_float.html"><img onmouseover="javascript:this.src='http://pagewebdevelopment.com/wp-content/uploads/2011/06/demo_alt.png';" onmouseout="javascript:this.src='http://pagewebdevelopment.com/wp-content/uploads/2011/06/demo.png';" src="http://pagewebdevelopment.com/wp-content/uploads/2011/06/demo.png" border="0" alt="Click here for a demo of the Fixed Floating Menu" width="125" height="55" /></a></p>
<p>There are two parts to this menu, the HTML and the CSS. You can place whatever you want in the floating menu div, links, images, even a video. This code is super simple and flexible! For my example I am using some social media icons.</p>
<p>CSS</p>
<pre>div.floating-menu {
	position:fixed;
	background:#CCC
	border:1px solid #ccc;
	width:64px;
	z-index:100;
	bottom: 10px;
	right: 15px;
}</pre>
<p>See, cant get much simpler than that. All you need to do is edit the code so that it will work the way you need it to.  You will want to keep the position: fixed. This will keep the div in the same place while you scroll down or up the page. You may want to change the z-index:100 if you do not want the menu to sit above everything.</p>
<p>My menu needed to sit on the bottom and to the right of the screen, so I set the position like so:</p>
<pre>        bottom: 10px;
	right: 15px;</pre>
<p>&nbsp;</p>
<p>HTML</p>
<pre>&lt;div class="floating-menu"&gt;
&lt;img src="images/facebook.png" alt="Facebook" width="16" height="16" /&gt;
&lt;img src="images/twitter.png" alt="twitter" width="16" height="16" /&gt;
&lt;img src="images/blogger.png" alt="Blogger" width="16" height="16"
/&gt;&lt;img src="images/linkedin.png" alt="linked in" width="16" height="16" /&gt;
&lt;/div&gt;</pre>
<p>I placed the HTML code in my container div before everything else. Just right click on the demo and view the source for the entire code.</p>
<p>You can place whatever you want in the floating menu div. Apply styles and make it yours. My example is very simple, I am just using some social media images without a hover effect.</p>
<p>I love this code, it is so simple and versatile. You can get as creative as you want with it.</p>
<p>Its the small things that make me giddy! Happy coding.</p>
<p>&nbsp;</p>
<p>To view the original source, click <a title="CSS Floating Menu" href="http://www.quackit.com/css/codes/css_floating_menu.cfm" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pagewebdevelopment.com/2011/06/05/easy-fixed-floating-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

