<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>beloudonline</title>
	<atom:link href="http://beloudonline.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://beloudonline.wordpress.com</link>
	<description>Make Noise. Get Noticed. Be Loud Communications.</description>
	<lastBuildDate>Mon, 22 Aug 2011 18:19:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='beloudonline.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>beloudonline</title>
		<link>http://beloudonline.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://beloudonline.wordpress.com/osd.xml" title="beloudonline" />
	<atom:link rel='hub' href='http://beloudonline.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Adding animation to your CSS menus</title>
		<link>http://beloudonline.wordpress.com/2011/08/18/animated-css-manu/</link>
		<comments>http://beloudonline.wordpress.com/2011/08/18/animated-css-manu/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 18:05:11 +0000</pubDate>
		<dc:creator>beloudonline</dc:creator>
				<category><![CDATA[HTML tricks]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[animated]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[Be Loud Communications]]></category>
		<category><![CDATA[flash alternative]]></category>
		<category><![CDATA[gif]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[menu bar]]></category>
		<category><![CDATA[nav bar]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[on page optimization]]></category>
		<category><![CDATA[Ryan Ligeza]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://beloudonline.wordpress.com/?p=158</guid>
		<description><![CDATA[As mentioned in an earlier post, one of the best ways to benefit your SEO is by using a text menu created in a list and formatted with CSS. This allowed for some basic roll over changes such as colour, &#8230; <a href="http://beloudonline.wordpress.com/2011/08/18/animated-css-manu/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=158&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As mentioned in an earlier post, one of the best ways to benefit your SEO is by using a text menu created in a list and formatted with CSS. This allowed for some basic roll over changes such as colour, font, size, etc. I have heard from people that this method does not offer enough animation and therefore they prefer to use flash. Now I am not on a mission to remove Flash from the web. I am sure there are many uses for it, but the constant need for updates and the increase lack of support for it have urged me to look for an alternative, which is what the following method is, an alternative.</p>
<p>Hopefully you will know how to create the menu in a list format and styled with CSS. If not, please go back and read my earlier post <a href="http://beloudonline.wordpress.com/2011/04/12/3-level-css-menu/" target="_blank">here</a>.</p>
<p>To create the animation, we are going to use the tried and true animated gif. I don’t want to see every website loaded down with gifs like they use to be, but used as a nice accent piece like this is perfect. So create a gif the same size or smaller than your &lt;li&gt;. Keep in mind that we are going to use this gif as the background to the &lt;li&gt;. The text within the &lt;li&gt; will be a separate entity. Let’s call the gif back.gif</p>
<p>Once the gif is ready, let’s get into the code. So if you already have a class assigned to the &lt;li&gt;, great &#8211; If not, assign one now. For the sake of this post we will call the class “underlay”. Now we want to say for any list items &lt;li&gt; with the underlay class (.underlay) must have this gif &#8211; url(back.gif) – when they are hovered over (:hover). Here is the code to achieve this:</p>
<p>li.underlay:hover {</p>
<p>    background: url(back.gif);</p>
<p>}</p>
<p>If you had already assigned a class to the line items, simply replace the underlay in the code above with the class name you assigned.</p>
<p>Another option is to have the animated gif appear OVER the text. This works if you want the text to appear to shine, or be covered by a logo or arrow, etc. Use your imagination for its applications. This method can also be used to replace JavaScript rollover images making your site more CSS based.</p>
<p>For this example instead of focusing on the list Item &lt;li&gt; we are going to focus on the anchor &lt;a&gt; since we want to cover OVER the text.  If we follow the same thinking as in the underlay, it would simply insert the image behind the anchor. The easiest way to work around this is to have the image appear within a span over the text. So let’s begin by saying that any anchor within the class “overlay” when hovered over will show the span class. We say all that like this:</p>
<p>a.overlay:hover span</p>
<p>We want the Span to display the gif we have named “front.gif”. To make sure the span appears in the proper area we will have to define the position as absolute and display it as a block. We will also need to dictate the size of the span as well – obviously the same size as the gif – let’s say 100px by 50px. If we don’t dictate the span size, since it will be empty nothing will appear.</p>
<p>{</p>
<p>background: url(front.gif);</p>
<p>position: absolute;</p>
<p>display: block;</p>
<p>width: 100px;</p>
<p>height: 50px;</p>
<p>}</p>
<p>&nbsp;</p>
<p>Place that within your head section or CSS file. Then, within your code place the following:</p>
<p>&lt;a href=&#8221;insert your link here&#8221;&gt;</p>
<p>&lt;span&gt;&lt;/span&gt;</p>
<p>Text for your link</p>
<p>&lt;/a&gt;</p>
<p>Hope you have found this useful! As always, comments and questions are welcome.</p>
<p>Need help with your website design? Visit us at <a title="www.beloudonline.com" href="http://www.beloudonline.com" target="_blank">www.beloudonline.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beloudonline.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beloudonline.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beloudonline.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beloudonline.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beloudonline.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beloudonline.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beloudonline.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beloudonline.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beloudonline.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beloudonline.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beloudonline.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beloudonline.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beloudonline.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beloudonline.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=158&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beloudonline.wordpress.com/2011/08/18/animated-css-manu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1384dde2d5b00ce5b9ae8adfcb5099b8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beloudonline</media:title>
		</media:content>
	</item>
		<item>
		<title>Facebook iFrame Reveal</title>
		<link>http://beloudonline.wordpress.com/2011/04/20/facebook-iframe-reveal/</link>
		<comments>http://beloudonline.wordpress.com/2011/04/20/facebook-iframe-reveal/#comments</comments>
		<pubDate>Wed, 20 Apr 2011 15:15:46 +0000</pubDate>
		<dc:creator>beloudonline</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Be Loud Communications]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[iFrame]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[reveal]]></category>
		<category><![CDATA[Ryan Ligeza]]></category>

		<guid isPermaLink="false">http://beloudonline.wordpress.com/?p=150</guid>
		<description><![CDATA[In the past, if you wanted to create a custom Facebook page you could use FBML, which is a code very similar to HTML. One of my favorite features with FBML was the reveal. What the reveal achieved was displaying &#8230; <a href="http://beloudonline.wordpress.com/2011/04/20/facebook-iframe-reveal/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=150&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In the past, if you wanted to create a custom Facebook page you could use FBML, which is a code very similar to HTML. One of my favorite features with FBML was the reveal. What the reveal achieved was displaying a different page &#8211; or portion thereof &#8211; to someone who liked your page then to someone who hadn’t liked it as of yet. This was very useful to encourage likes.</p>
<p>With FBML being deprecated, you are still able to utilize the reveal but it is a little more complicated now. The biggest difference is that your custom tab is not create on Facebook’s server as it was with FBML but instead created and hosted on your server but shown through the Facebook platform. This is done through an iframe. Now Facebook will try to post a “signed request” to your page and your page must be able to accept this.</p>
<p>If you are not going to use the information within the signed request, then you can simply change your extension from HTML to PHP. This will fool the browser into thinking that the page has accepted it, where an HTML file will simply reject anything posted to it.</p>
<p>To use the information within the signed request, we must download a file and load it onto the same server that you are placing your index file. That file is available here:<br />
<a href="https://github.com/facebook/php-sdk/zipball/master">https://github.com/facebook/php-sdk/zipball/master</a></p>
<p>Once this downloads, unzip it and look within the “src” folder. Grab the facebook.php file and put that within the same folder as your index file.  Then we must add some code to your index file to load the facebook.php file. This code also gathers the information for you specific application through your app id and app secret (available on your app development page):</p>
<p>&lt;?php require ‘facebook.php’;<br />
$app_id = “enter your app id here”;<br />
$app_secret = “enter your app secret here”;<br />
$facebook = new Facebook(array(<br />
‘appId’ =&gt; $app_id,<br />
‘secret’ =&gt; $app_secret,<br />
‘cookie’ =&gt; true<br />
));</p>
<p>Now that it is set up, you will be able to gather information from the “signed request”.  This includes the page id of the visitor, if they are an admin of the page, their country and local, and if they like your page or not.</p>
<p>So let’s tell the page to accept the signed request so we can gather the info it holds by next adding the following code:</p>
<p>$signed_request = $facebook-&gt;getSignedRequest();</p>
<p>$page_id = $signed_request[“page”][“id”];<br />
$page_admin = $signed_request[“page”][“admin”];<br />
$like_status = $signed_request[“page”][“liked”];<br />
$country = $signed_request[“user”][“country”];<br />
$locale = $signed_request[“user”][“locale”];</p>
<p>Now comes the reveal. By entering the following code we are checking to see if the visitor likes the page. If they do we will display youlikeus.html, if they do not we will display youdontlikeus.html. We do this through a refresh. For your code, replace youlikeus.html and youdontlikeus.html with your appropriate pages.</p>
<p>if ($like_status) {<br />
 {echo “&lt;meta http-equiv=\”refresh\” content=\”0;URL=youlikeus.html\”&gt;”;}<br />
}<br />
else {<br />
 {echo “&lt;meta http-equiv=\”refresh\” content=\”0;URL=youdontlikeus.html\”&gt;”;}<br />
}</p>
<p>?&gt;</p>
<p>That is it. I hope you find it useful. If you need help with your social media marketing or website design, please visit <a href="http://www.beloudonline.com/">www.beloudonline.com</a></p>
<p>Here is the complete code. Keep in mind that copying and pasting may cause difficulties due to the quotations pasting incorrectly. Please retype yourself:</p>
<p>&lt;?php require ‘facebook.php’;</p>
<p>$app_id = “enter your app id here”;<br />
$app_secret = “enter your app secret here”;<br />
$facebook = new Facebook(array(<br />
‘appId’ =&gt; $app_id,<br />
‘secret’ =&gt; $app_secret,<br />
‘cookie’ =&gt; true<br />
));</p>
<p>$signed_request = $facebook-&gt;getSignedRequest();</p>
<p>$page_id = $signed_request[“page”][“id”];<br />
$page_admin = $signed_request[“page”][“admin”];<br />
$like_status = $signed_request[“page”][“liked”];<br />
$country = $signed_request[“user”][“country”];<br />
$locale = $signed_request[“user”][“locale”];</p>
<p>if ($like_status) {<br />
 echo “&lt;meta http-equiv=\”refresh\” content=\”0;URL=youlikeus.html\”&gt;”;<br />
}<br />
else {<br />
 echo “&lt;meta http-equiv=\”refresh\” content=\”0;URL=youdontlikeus.html\”&gt;”;<br />
}</p>
<p>?&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beloudonline.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beloudonline.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beloudonline.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beloudonline.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beloudonline.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beloudonline.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beloudonline.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beloudonline.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beloudonline.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beloudonline.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beloudonline.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beloudonline.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beloudonline.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beloudonline.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=150&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beloudonline.wordpress.com/2011/04/20/facebook-iframe-reveal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1384dde2d5b00ce5b9ae8adfcb5099b8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beloudonline</media:title>
		</media:content>
	</item>
		<item>
		<title>3 level CSS menu &#8211; best for on page optimization</title>
		<link>http://beloudonline.wordpress.com/2011/04/12/3-level-css-menu/</link>
		<comments>http://beloudonline.wordpress.com/2011/04/12/3-level-css-menu/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 14:36:21 +0000</pubDate>
		<dc:creator>beloudonline</dc:creator>
				<category><![CDATA[HTML tricks]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Be Loud Communications]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[menu bar]]></category>
		<category><![CDATA[nav bar]]></category>
		<category><![CDATA[on page optimization]]></category>
		<category><![CDATA[Ryan Ligeza]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://beloudonline.wordpress.com/?p=140</guid>
		<description><![CDATA[As described in an earlier post, text based menus are best for SEO purposes. If you are looking for a simpler menu or want to read about the benefits of a CSS menu, please visit our previous post here. This &#8230; <a href="http://beloudonline.wordpress.com/2011/04/12/3-level-css-menu/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=140&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As described in an earlier post, text based menus are best for SEO purposes. If you are looking for a simpler menu or want to read about the benefits of a CSS menu, please visit our <a title="previous post here" href="http://beloudonline.wordpress.com/2011/03/01/on-page-optimization-of-your-pages-menu/" target="_blank">previous post here</a>. This post is demonstrating a more complicated 3-level CSS menu. Again, please do not copy and paste as some characters will not copy properly. So let’s jump right in…</p>
<p>First Thing we need to do is set the look of the menu. Let’s remove bullets from the list, remove margin and padding so we can dictate later, and establish the width of the list. Notice we are not setting the height so that it will automatically fit to what we need.</p>
<p>ul {</p>
<p>                list-style:none;</p>
<p>                margin:0;</p>
<p>                padding:0;</p>
<p>                width:180px;</p>
<p>                border:solid 1px #000;</p>
<p>                background-color:#fbeae4;</p>
<p>}</p>
<p>We also need to set the look of each line item. Again let’s remove all padding and margin so we can dictate later, and set the width and height.</p>
<p>li {</p>
<p>                width:180px;</p>
<p>                height:40px;</p>
<p>                padding:0;</p>
<p>                margin:0;</p>
<p>}</p>
<p>No lets set the look of each item when it is hovered.  Let’s dictate the height and width, as well as removing the margin and padding. I know this is redundant but any misplacing will throw the whole thing off so I like to be safe. Let’s also change the background color and put a border around the item we are hovering.</p>
<p>li:hover {</p>
<p>                width:180px;</p>
<p>                height:40px;</p>
<p>                margin:0;</p>
<p>                padding:0px;</p>
<p>                border:solid 1px #000;</p>
<p>                background-color:#fecdbe;</p>
<p>}</p>
<p>Since each title within our menu will be a text link, let’s control the look of the anchor. We also want to remove the underline and dictate the color. An important step is to set the anchor to display as a block and set the width and height to 100%. If we didn’t do this then the visitor would have to hover directly over the text to activate, where visitors are familiar with hovering over the area as a button. This sets the link to the entire area as if it was a button.</p>
<p>li a {</p>
<p>                margin: 0px;</p>
<p>                display:block;</p>
<p>                width: 100%;</p>
<p>                height: 100%;</p>
<p>                text-decoration:none;</p>
<p>                color:#000;</p>
<p>                font-size:12px;</p>
<p>}</p>
<p>We also want to do the same for the text links when they are hovered. Notice in this example we are not changing text color, but you can do so very easily as well as text size if you so desire. If changing text size, please compensate for width.</p>
<p>li a:hover {</p>
<p>                margin: 0px;</p>
<p>                display:block;</p>
<p>                width: 100%;</p>
<p>                height: 100%;</p>
<p>                text-decoration:none;</p>
<p>                color:#000;</p>
<p>                font-size:12px;</p>
<p>}</p>
<p>Now let’s hide second and third levels until they are needed. We are doing this by setting the display to none for everything after what we are looking at.</p>
<p>ul ul,</p>
<p>ul li:hover ul ul,</p>
<p>ul ul li:hover ul ul</p>
<p>{display: none;}</p>
<p>Now we want to display them as block when the previous li is hovered. Please note earlier reference to displaying as a block to achieve the feel of a button.</p>
<p>ul li:hover ul,</p>
<p>ul ul li:hover ul,</p>
<p>ul ul ul li:hover ul</p>
<p>{display: block;}</p>
<p>Now we have the menu working but the menu items do not align as they should. Let’s dictate that now. To make the menu items align we need to bring them up and out to the right.</p>
<p>ul ul {</p>
<p>                margin-top:-50px;</p>
<p>                margin-left: 180px;         </p>
<p>}</p>
<p>Now, since we removed the margin and padding from all ul and li we need to set a constant for all items. So let’s create a class to achieve this.</p>
<p>.indent {</p>
<p>                padding:10px 0 0 10px;</p>
<p>}</p>
<p>And last but not least, let’s create a containing box for the menu.</p>
<p>.menu {</p>
<p>                height: 450px;</p>
<p>                width: 180px;</p>
<p>                margin-left: 30px;</p>
<p>                margin-top: 20px;</p>
<p>                float:left;</p>
<p>}</p>
<p>That is the CSS side. Now let’s look at the HTML side:</p>
<p>&lt;div&gt;</p>
<p>&lt;ul&gt;</p>
<p>&lt;li&gt;&lt;a href=&#8221;link&#8221;&gt;Level 1&lt;/a&gt;&lt;/li&gt;</p>
<p>&lt;li&gt;&lt;a href=&#8221;link&#8221;&gt;Level 1&lt;/a&gt;&lt;/li&gt;</p>
<p>&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Level 1&lt;/a&gt;</p>
<p>    &lt;ul&gt;&lt;li&gt;&lt;a href=&#8221;link&#8221;&gt;Level 2&lt;/a&gt;&lt;/li&gt;</p>
<p>        &lt;li&gt;&lt;a href=&#8221;link&#8221;&gt;Level 2&lt;/a&gt;&lt;/li&gt;</p>
<p>    &lt;/ul&gt;&lt;/li&gt;</p>
<p>&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Level 1&lt;/a&gt;</p>
<p>    &lt;ul&gt;&lt;li&gt;&lt;a href=&#8221;#&#8221;&gt;Level 2&lt;/a&gt;</p>
<p>                &lt;ul&gt;&lt;li&gt;&lt;a href=&#8221;link&#8221;&gt;Level 3&lt;/a&gt;&lt;/li&gt;</p>
<p>            &lt;li&gt;&lt;a href=&#8221;link&#8221;&gt;Level 3&lt;/a&gt;&lt;/li&gt;</p>
<p>            &lt;li&gt;&lt;a href=&#8221;link&#8221;&gt;Level 3&lt;/a&gt;&lt;/li&gt;</p>
<p>                &lt;/ul&gt;&lt;/li&gt;</p>
<p>   &lt;/ul&gt;&lt;/li&gt;</p>
<p>&lt;/ul&gt;&lt;/div&gt;</p>
<p>Hope that works for you as well as it has worked for me. If you require any help or are looking for effective custom website design, please visit us at <a title="www.beloudonline.com" href="http://www.beloudonline.com">www.beloudonline.com</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beloudonline.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beloudonline.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beloudonline.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beloudonline.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beloudonline.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beloudonline.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beloudonline.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beloudonline.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beloudonline.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beloudonline.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beloudonline.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beloudonline.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beloudonline.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beloudonline.wordpress.com/140/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=140&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beloudonline.wordpress.com/2011/04/12/3-level-css-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1384dde2d5b00ce5b9ae8adfcb5099b8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beloudonline</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Code Your Email Marketing So It Gets Seen</title>
		<link>http://beloudonline.wordpress.com/2011/04/05/how-to-code-your-email-so-it-gets-seen/</link>
		<comments>http://beloudonline.wordpress.com/2011/04/05/how-to-code-your-email-so-it-gets-seen/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 14:20:55 +0000</pubDate>
		<dc:creator>beloudonline</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Be Loud Communications]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[e-newsletter]]></category>
		<category><![CDATA[eflyer]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[newsletter]]></category>
		<category><![CDATA[Ryan Ligeza]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://beloudonline.wordpress.com/?p=129</guid>
		<description><![CDATA[Email marketing could arguably be one of the most effective marketing tools available today, allowing you to send emails directly to customers who have requested them. With over 80% of emails being sent classified as Spam, it is costing companies &#8230; <a href="http://beloudonline.wordpress.com/2011/04/05/how-to-code-your-email-so-it-gets-seen/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=129&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Email marketing could arguably be one of the most effective marketing tools available today, allowing you to send emails directly to customers who have requested them. With over 80% of emails being sent classified as Spam, it is costing companies in the billions in lost productivity. To combat this, many email service provides have installed default spam filters which look for certain signs that an email maybe spam. If you don’t follow certain guidelines, YOUR email may trigger a spam filter even if the recipient has requested it. Nothing is more frustrating for a reader than to request your email and not receive it.</p>
<p>In addition to Spam filters, there are many different email service providers that all render your email differently. A beautifully designed email can look like garbage if the email service provider renders it incorrectly. By following a few simple steps, you can ensure that your email is received and displayed the way it was intended.</p>
<p><strong>1 – Use Tables</strong></p>
<p>I know it is counter intuitive as the web design world moves away from tables towards CSS, but emails are different than websites. Also, make sure to define the width and height of each cell. Email service preview panes are different sizes than the actual viewing area so by defining the dimensions you control the layout. Not to mention that different email services will render differently unless you define the dimensions.</p>
<p><strong>2 – Newsletter dimensions</strong></p>
<p>When most people receive your email, they will see the first 600 pixels wide from the top left corner, and the top 200 to 300 pixels of the newsletter. This is what will be displayed in their preview pane. It is based on this that they will decide to read on or not. Put the punch where they can see it. </p>
<p><strong>3 – Stay away from CSS &#8211; especially external style sheets.</strong></p>
<p>Many email services are moving away from CSS support, especially external style sheets, and cut everything above the body tag – essentially leaving your email un-styled. To avoid this you should layout your email directly within each appropriate tag.</p>
<p><strong>4 – Don’t use JavaScript in a newsletter – Ever!</strong></p>
<p>There is no better way to get caught and blocked by a SPAM filter than by using JavaScript in an email.</p>
<p><strong>5 – Minimal Graphics</strong></p>
<p>Most email clients have their default settings to turn the graphics off, and most people do not spend the time to figure out how to turn them back on. Further, too many pictures (especially in ratio to actual text) in an email can be caught and blocked by spam filters. Why waste the time creating an email if it is just going to be blocked and not seen anyway?  Only use graphics that add to the content, not just for content.</p>
<p><strong>6 – Define your images</strong></p>
<p>Images are treated differently by different email services so by strictly defining all aspects of the image, you will ensure that if it is seen it is seen properly. With this in mind, do not use images for important content such as headers or links, and always use a descriptive alt tag. It is important to define both width and height as some email services default to 0 for either which aren’t defined.  For white space around your images use hspace and vspace as padding and margin are not reliably supported.</p>
<p>By following these 6 simple steps, your email is more likely to be received and viewed by the recipient as you intended.</p>
<p>If you require help with your email marketing, or if you would like us to set it all up for you to manage, please visit us at <a href="http://www.beloudonline.com/">www.beloudonline.com</a> or visit us at <a href="http://www.facebook.com/BeLoudOnline">www.facebook.com/BeLoudOnline</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beloudonline.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beloudonline.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beloudonline.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beloudonline.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beloudonline.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beloudonline.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beloudonline.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beloudonline.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beloudonline.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beloudonline.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beloudonline.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beloudonline.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beloudonline.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beloudonline.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=129&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beloudonline.wordpress.com/2011/04/05/how-to-code-your-email-so-it-gets-seen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1384dde2d5b00ce5b9ae8adfcb5099b8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beloudonline</media:title>
		</media:content>
	</item>
		<item>
		<title>Top 5 Best Practices for Email Marketing Creation</title>
		<link>http://beloudonline.wordpress.com/2011/04/05/top-5-best-practices-email-marketing-creation/</link>
		<comments>http://beloudonline.wordpress.com/2011/04/05/top-5-best-practices-email-marketing-creation/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 14:19:20 +0000</pubDate>
		<dc:creator>beloudonline</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[Be Loud Communications]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[e-newsletter]]></category>
		<category><![CDATA[eflyer]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[increase effectiveness]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[newsletter]]></category>
		<category><![CDATA[Ryan Ligeza]]></category>
		<category><![CDATA[steps]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://beloudonline.wordpress.com/?p=125</guid>
		<description><![CDATA[Email Marketing is a valuable tool through which you can directly reach hundreds and thousands of your customers in a very cost effective way. With permission based distribution in which people sign up for your email, the readership is extremely &#8230; <a href="http://beloudonline.wordpress.com/2011/04/05/top-5-best-practices-email-marketing-creation/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=125&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Email Marketing is a valuable tool through which you can directly reach hundreds and thousands of your customers in a very cost effective way. With permission based distribution in which people sign up for your email, the readership is extremely high. In plain English, with permission based email marketing you are sending your emails directly to people who have asked for it and want to read it. In what other advertising medium does the audience actually request and wait for your promotional material? NONE!</p>
<p>If you are going to engage in email marketing that are a couple of best practices that will increase the effectiveness. Following are the top 5 concerns that should be addressed in the creation of your email:</p>
<p><strong>1 – Make it informative or give the reader an added benefit OTHER than just promotional material.</strong></p>
<p>If the reader begins to see your email as just another advertising piece, they will view it as spam and unsubscribe. Sell, but don’t be too “salesman” about it. There is a fine line between creating desire by informing people so they can make an educated purchase, and pitching them as if you were selling used cars (no offence to used car salesmen!) If you have trouble walking this fine line, let us help you by visiting <a href="http://www.beloudonline.com/">www.beloudonline.com</a> – see what we mean?</p>
<p><strong>2 – Call to action, Ask for the sale.</strong></p>
<p>Sometimes you just need to tip the scale – to help people make the decision to purchase. Other times all you need to do is ask. In either case, if you don’t try, they won’t buy. Even a small promotion may be enough to entice them. Offer a coupon or discount. Just give them a reason…</p>
<p><strong>3 – Give them a way to purchase.</strong></p>
<p>What you do with any email marketing campaign is build the desire. You build it and build it to the point of action, and then if you don’t give them a way to take action, it was all a waste. You have them foaming at the mouth to purchase your product or service &#8211; let them! Add a link to a site that they can make the purchase, a link to a site that shows them where they can go to purchase it, or a phone number they can call to purchase.</p>
<p><strong>4 – Keep it short</strong></p>
<p>Keep your email to about 300 words. If it starts getting any more than that, you may want to think about linking to a blog or your website. An email isn’t the right media or venue for large format articles, but a blog is perfect for it!</p>
<p><strong>5 – Be consistent in layout and design</strong></p>
<p>Readers will begin to expect your email to look a certain way, to be able to recognize it at a glance. By sticking to a familiar layout, number of articles, location of links, etc… your email will be easier for the reader to scan and find what they are looking for. In addition, by being consistent you will be defining your brand identity.</p>
<p>By reviewing these 5 points during the creation of your email marketing campaign you will increase its effectiveness. Our next post <a title="How To Code Your Email So It Gets Seen" href="http://beloudonline.wordpress.com/2011/04/05/how-to-code-your-email-so-it-gets-seen/" target="_blank">How To Code Your Email So It Gets Seen </a>addresses the technical code aspects of the email. Did you know that the type of coding (JavaScript for example) and the number of graphics used can determine whether your email even makes it to the recipient!</p>
<p>If you require help with your email marketing, or if you would like us to set it all up for you to manage, please visit us at <a href="http://www.beloudonline.com/">www.beloudonline.com</a> or visit us at <a href="http://www.facebook.com/BeLoudOnline">www.facebook.com/BeLoudOnline</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beloudonline.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beloudonline.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beloudonline.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beloudonline.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beloudonline.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beloudonline.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beloudonline.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beloudonline.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beloudonline.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beloudonline.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beloudonline.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beloudonline.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beloudonline.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beloudonline.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=125&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beloudonline.wordpress.com/2011/04/05/top-5-best-practices-email-marketing-creation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1384dde2d5b00ce5b9ae8adfcb5099b8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beloudonline</media:title>
		</media:content>
	</item>
		<item>
		<title>Static Photo Background</title>
		<link>http://beloudonline.wordpress.com/2011/03/23/static-photo-background/</link>
		<comments>http://beloudonline.wordpress.com/2011/03/23/static-photo-background/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 17:46:07 +0000</pubDate>
		<dc:creator>beloudonline</dc:creator>
				<category><![CDATA[HTML tricks]]></category>
		<category><![CDATA[background images]]></category>
		<category><![CDATA[Be Loud Communications]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[Ryan Ligeza]]></category>
		<category><![CDATA[static]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://beloudonline.wordpress.com/?p=111</guid>
		<description><![CDATA[I was recently designing a webpage for a photographer who had a special picture he wanted as his background. He wanted this picture to be static and not moving, even though he wanted the text and other content to scroll. &#8230; <a href="http://beloudonline.wordpress.com/2011/03/23/static-photo-background/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=111&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was recently designing a webpage for a photographer who had a special picture he wanted as his background. He wanted this picture to be static and not moving, even though he wanted the text and other content to scroll. This can be achieved very easily but there are certain parameters that you must take into consideration when choosing the picture and its width and height.</p>
<p>First let’s deal with those considerations and then we will discuss how to place the picture and make it static. The number one concern should be how much of the picture will be seen. People have their screens set to different resolutions and widths. Typically, when designing a website you should aim to stay within an 800 pixel width to ensure your entire site is seen. Otherwise it risks being off screen to the side out of view. The problem with this is that some people have their monitors set to 1200px width leaving lots of &#8220;white space&#8221; around our site. This is easily remedied by the left and right margins being set to auto, causing the site to center in the screen. We can achieve the same as this by centering our picture. Keep In mind that if your picture is 1200px wide but the screen is only 800px, then it is the 800 pixels from the left side of the picture that will be viewed.</p>
<p>The other option to centering your picture is to have the focus of the picture in the top left corner or left side with extra or unnecessary portions possibly off screen to the right and bottom.</p>
<p>Another consideration to keep in mind is what will be over the background picture you are setting up. Obviously you are not going to want black text over a black picture. Also, you will not want to have a white box containing your text sitting over the focal point of your picture.</p>
<p>The last consideration that we will bring up before we get into the code is the file size and resolution of the picture. The larger the file size the longer it will take to load. Don’t ruin your great design by setting an unnecessary high resolution picture as the background to slow the page load. Screen resolution is only 72dpi so setting your picture to anything higher is a waste. File type is important as well. IF your back ground picture is a logo or drawing with few colors, then the best file type would be gif or png. For pictures with lots of color or gradients, such as photos, then stick with jpeg.</p>
<p>Alright, let’s get to the code! It is actually quite simple. In the opening body tag set your background image and its properties to &#8220;fixed&#8221;. It should look like this:</p>
<p>&lt;body background =&#8221;yourimage.gif&#8221; bgproperties=&#8221;fixed&#8221;&gt;</p>
<p>Now within our head section we need to tell the browser where the picture is located { background-image: url(<strong>yourimage.jpg</strong>) }. We also want just one picture placed, not repeated over and over { background-repeat: no-repeat }. As we discussed earlier, we also want to center the picture in the background { background-position: center }. We do all of this by placing the following code between the head tags:<br />
&lt;style type=&#8221;text/css&#8221; &gt;<br />
&lt;! &#8211; -<br />
body { background-image: url(<strong>yourimage.jpg</strong>) }<br />
body { background-repeat: no-repeat }<br />
body { background-position: center }<br />
- -&gt;<br />
&lt;/style&gt;</p>
<p>And that is it!</p>
<p>Need some help? Visit our website at <a title="&quot;Be" href="//www.beloudonline.com&quot;" target="&quot;_blank&quot;">www.beloudonline.com</a> and contact us. We look forward to hearing from you.</p>
<p>**Please do not copy and paste code. I have tried to work around using escape characters in the writing of the post, but quotation marks often appear wrong and therefore render incorrectly.</p>
<p><strong><a href="//www.beloudonline.com&quot;"><img title="&quot;Be" src="//www.beloudonline.com/facebook/Logo3.gif&quot;" alt="&quot;Be" width="&quot;257&quot;" height="&quot;146&quot;" /></a></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beloudonline.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beloudonline.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beloudonline.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beloudonline.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beloudonline.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beloudonline.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beloudonline.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beloudonline.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beloudonline.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beloudonline.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beloudonline.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beloudonline.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beloudonline.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beloudonline.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=111&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beloudonline.wordpress.com/2011/03/23/static-photo-background/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1384dde2d5b00ce5b9ae8adfcb5099b8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beloudonline</media:title>
		</media:content>
	</item>
		<item>
		<title>On Page Optimization of your page&#8217;s menu&#8230;</title>
		<link>http://beloudonline.wordpress.com/2011/03/01/on-page-optimization-of-your-pages-menu/</link>
		<comments>http://beloudonline.wordpress.com/2011/03/01/on-page-optimization-of-your-pages-menu/#comments</comments>
		<pubDate>Tue, 01 Mar 2011 21:36:57 +0000</pubDate>
		<dc:creator>beloudonline</dc:creator>
				<category><![CDATA[Website Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[menu bar]]></category>
		<category><![CDATA[nav bar]]></category>
		<category><![CDATA[on page optimization]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://beloudonline.wordpress.com/?p=102</guid>
		<description><![CDATA[**Please note that quotations used in this article may pose a problem when copying and pasting code. Please make sure you check all quotations before posting comments. Thanks. The menu or &#8220;nav bar&#8221; is perhaps one of the most overlooked &#8230; <a href="http://beloudonline.wordpress.com/2011/03/01/on-page-optimization-of-your-pages-menu/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=102&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p><em>**Please note that quotations used in this article may pose a problem when copying and pasting code. Please make sure you check all quotations before posting comments. Thanks.</em></p></blockquote>
<p>The menu or &#8220;nav bar&#8221; is perhaps one of the most overlooked and misunderstood parts of the website. Designers have made it very eye catching using Flash or roll-over images and it LOOKS great to the human eye, BUT for search engine optimization purposes it is near invisible.</p>
<p>Now please do not start commenting on how important the design is the Website. With over a decade of Graphic Design experience I know of its value, but what is the point of a great looking website if no one can find it?</p>
<p>The nav bar may not be the deciding factor in the Search Page Ranking, but it definitely is a part of the on page optimization. So for those who want to maximize their on page optimization, this article is for you&#8230; </p>
<p>As mentioned previously, both Flash and images are not &#8220;read&#8221; by search engines. You can fill in the &#8220;alt&#8221; attributes, but these are not given the same weight as actual text. With this in mind, and a little extra effort during the wording of your nav bar selections, you can really improve your on page optimization.</p>
<p>So lets begin by working on a website for the Tire Shop &#8211; as an example. They sell tires and their website has four pages: Home, Products, About Us and Contact Us. First, lets optimize the selections on the nav bar to read: Home, Tires, About The Tire Shop and Contact The Tire Shop. This increases the frequency of the keyword &#8220;Tire&#8221; by three and will also increase its density. </p>
<p>Lets put these selections in a list.<br />
&#060;ul&#062;<br />
&#060;li&#062;Home&#060;/li&#062;<br />
&#060;li&#062;Tires&#060;/li&#062;<br />
&#060;li&#062;About The Tire Shop&#060;/li&#062;<br />
&#060;li&#062;Contact The Tire Shop&#060;/li&#062;<br />
&#060;/ul&#062;</p>
<p>At this point lets name each page (except home) the same as the selection with hyphens instead of spaces between words. So home will link to index.html, About The Tire Shop to about-the-tire-shop.html, etc&#8230; Lets establish each selection as a link to these pages using &#060;a href=&#8221;"&#062;:<br />
&#060;ul&#062;<br />
&#060;li&#062;&#060;a href=&#8221;index.html&#8221;&#062;Home&#060;/a&#062;&#060;/li&#062;<br />
&#060;li&#062;&#060;a href=&#8221;tires.html&#8221;&#062;Tires&#060;/a&#062;&#060;/li&#062;<br />
&#060;li&#062;&#060;a href=&#8221;about-the-tire-shop.html&#8221;&#062;About The Tire Shop&#060;/a&#062;&#060;/li&#062;<br />
&#060;li&#062;&#060;a href=&#8221; contact-the-tire-shop.html &#8220;&#062;Contact The Tire Shop&#060;/a&#062;&#060;/li&#062;<br />
&#060;/ul&#062;</p>
<p>Your list is done and you now have a working nav bar. Now we just need to style it.<br />
So lets define the &#8220;navbar&#8221; class (we will apply it to the list later). Class is designated by a period followed by the class name. So the navbar class would read as .navbar with all attributes associated with the class between two curly brackets following, like this:<br />
.navbar &#123;enter attributes here&#125;</p>
<p>Since everything in the navbar class is an anchor &#060;a href=&#8221;"&#062;, lets specify that these attributes apply to all anchors within the navbar class. We do this by putting an a after the class name but before the opening curly bracket like this:<br />
.navbar a &#123;enter attributes here&#125;</p>
<p>Lets specify the font family, size and color to begin with as Arial, 10px and black (Hexidecimal color code #000). This is what people will see initially. We enter these attributes like this:<br />
.navbar &#123;<br />
	font-family: Arial;<br />
	font-size: 10px;<br />
	color: #000;<br />
 &#125;</p>
<p>Lets also get rid of the underline beneath the link by entering the text-decoration: none attribute. This will complete the styling for the initial nav bar:<br />
.navbar a &#123;<br />
	font-family: Arial;<br />
	font-size: 10px;<br />
	color: #000;<br />
	text-decoration: none;<br />
 &#125;</p>
<p>Now we have to cause it to change when a visitor hovers over it. We do this by simply adding the :hover after the a like this:<br />
.navbar a:hover &#123; &#125;</p>
<p>When someone hovers over the link, we want the font family to stay the same, but we want the size and color to change. So lets take the attributes form the original class and just modify, changing the font size to 14px and the color to Red (Hexidecimal color code #ff0000).<br />
.navbar a:hover &#123;<br />
	font-family: Arial;<br />
	font-size: 14px;<br />
	color: #ff0000;<br />
	text-decoration: none;<br />
 &#125;</p>
<p>Take both of these and place them right above the closing head tag. It should look like this:<br />
.navbar a &#123;<br />
	font-family: Arial;<br />
	font-size: 10px;<br />
	color: #000;<br />
	text-decoration: none;<br />
 &#125;<br />
.navbar a:hover &#123;<br />
	font-family: Arial;<br />
	font-size: 14px;<br />
	color: #ff0000;<br />
	text-decoration: none;<br />
 &#125;</p>
<p>Now we just need to apply the navbar class to the list by entering class=&#8221;navbar&#8221; after the opening ul. The final code in the body looks like this:</p>
<p>&#060;ul class=&#8221;navbar&#8221;&#062;<br />
&#060;li&#062;&#060;a href=&#8221;index.html&#8221;&#062;Home&#060;/a&#062;&#060;/li&#062;<br />
&#060;li&#062;&#060;a href=&#8221;tires.html&#8221;&#062;Tires&#060;/a&#062;&#060;/li&#062;<br />
&#060;li&#062;&#060;a href=&#8221;about-the-tire-shop.html&#8221;&#062;About The Tire Shop&#060;/a&#062;&#060;/li&#062;<br />
&#060;li&#062;&#060;a href=&#8221;contact-the-tire-shop.html&#8221;&#062;Contact The Tire Shop&#060;/a&#062;&#060;/li&#062;<br />
&#060;/ul&#062;</p>
<p>And that is it. Your On Page Optimized nav bar!</p>
<p>If you want to get rid of the bullets before every list item, enter this code within the head tags:<br />
ul &#123;list-style:none&#125;</p>
<p>Need some help? Visit our website at <a title="Be Loud Communications" href="http://www.beloudonline.com" target="_blank">www.beloudonline.com</a> and contact us. We look forward to hearing from you.</p>
<p><strong><a href="http://www.beloudonline.com"><img title="Be Loud Logo" src="http://www.beloudonline.com/facebook/Logo3.gif" alt="Be Loud Communications" width="257" height="146" /></a></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beloudonline.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beloudonline.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beloudonline.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beloudonline.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beloudonline.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beloudonline.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beloudonline.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beloudonline.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beloudonline.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beloudonline.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beloudonline.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beloudonline.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beloudonline.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beloudonline.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=102&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beloudonline.wordpress.com/2011/03/01/on-page-optimization-of-your-pages-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1384dde2d5b00ce5b9ae8adfcb5099b8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beloudonline</media:title>
		</media:content>

		<media:content url="http://www.beloudonline.com/facebook/Logo3.gif" medium="image">
			<media:title type="html">Be Loud Logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Facebook iFrame tab step by step!</title>
		<link>http://beloudonline.wordpress.com/2011/02/18/facebook-iframe-tab/</link>
		<comments>http://beloudonline.wordpress.com/2011/02/18/facebook-iframe-tab/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 22:03:10 +0000</pubDate>
		<dc:creator>beloudonline</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Be Loud Communications]]></category>
		<category><![CDATA[Business Page]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[iFrame]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Ryan Ligeza]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[tab]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://beloudonline.wordpress.com/?p=92</guid>
		<description><![CDATA[Facebook. Really becoming a love hate kinda thing. Just when I &#8220;master&#8221; the FBML you change the whole game. It&#8217;s almost as if you were waiting for the day&#8230; The iFrame app can be a little intimidating, but it really &#8230; <a href="http://beloudonline.wordpress.com/2011/02/18/facebook-iframe-tab/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=92&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Facebook. Really becoming a love hate kinda thing. Just when I &#8220;master&#8221; the FBML you change the whole game. It&#8217;s almost as if you were waiting for the day&#8230;</p>
<p>The iFrame app can be a little intimidating, but it really does not need to be as long as you know some basic HTML. So lets go through how YOU can create YOUR own custom iFrame app for your Facebook page. May I suggest either printing of this post or keeping it open in another window as reference as you go through it. It will make much more sense with a visual reference than on it&#8217;s own.</p>
<p>First thing is to create the page that you want displayed on Facebook. To display it on your page as a tab, it must be no wider than 520 pixels. Scroll bars will appear if your page is wider than 520px or taller than the screen. In this case of the height, I have found that a width of 480 pixels fit without anything being covered by the vertical scroll bar. Post this page in a directory on your server and note the URL address for the directory. For example, lets create a file called index.php and put it in a new directory we named Facebook. So the url for the directory which contains the index.php file would be http://www.yoursite.com/facebook/</p>
<p>If your page is an html page (index.html for instance) than you will need to save it as a PHP. Facebook will try to Post to your page and many servers will not allow anything to be Posted to an html file. Your page doesn&#8217;t need to do anything with this Post, as long as it is a file type that can accept Posts. Simply changing the .html to .php will work fine. If your file is already a PHP, it should work no problem.</p>
<p>Next, install the Developer app. Once it is installed, simply click the &#8220;Set up new App&#8221; button in the top right corner. You will be brought to a page with 6 options in the nav bar to the left. About, Web Site, Facebook Integration, Mobile Devices, Credits and Advanced. There are many options and customizations but we are just creating a simple app in this post and in so doing will be only working with 2 of these options, About and Facebook Integration.</p>
<p>In the About section, fill in the name of your app and the Description. Upload an icon or logo, or keep the defaults that are there. Now move on to the Facebook Integration.</p>
<p>In the Facebook Integration area you will notice mention of canvas. Think of the canvas as if you were an artist about to create a masterpiece. It is a blank slate for you to work upon.</p>
<p>First thing you need to do is give your canvas page a name up to 20 characters following the preset http://apps.facebook.com/ . If the name is already being used it will let you know and prompt you for a different name.</p>
<p>Next is the Canvas URL &#8211; this is the url for the directory that holds the page that you want displayed in your new Facebook iFrame. Referring to the example from earlier: http://www.yoursite.com/facebook/</p>
<p>Make sure you choose the iFrame Canvas Type, and you have the option to show scroll bars or auto-resize the page to fit the screen.</p>
<p>Lower on the page you will have the option to name your tab with a 16 character limit. Choose the iFrame Page Tab Type. Next is the Tab URL. This is the name of the file in the directory that you want to be your app landing page. Referring to the example from earlier, the file name would be index.php (which is the file inside the Facebook directory).</p>
<p>Click &#8220;Save Changes&#8221; at the bottom of the page and that is it! You now have your own iFrame app to display on your page. Now we need to add it to your page.</p>
<p>In roughly the middle of the page that you were brought to by clicking save changes, you will notice the options to Edit Savings, Application Profile Page, Insights, Translations, Advertise, and Reset App Secret.  If you navigated away from this page, you can get there by going back to your apps page and re-launching the Developer app. This time when it launches you will notice your app listed on the right side under My Apps. Simply click the name of your app.</p>
<p>Click on the Application Profile Page and on the left hand side under the app profile pic you will notice the nav bar started with Edit App. 5th option down is &#8220;Add to my page&#8221;. Click this option and a window will pop up asking which page to add it to. Choose your page and you are done.</p>
<p>This post will help you create a simple iFrame tab for your Facebook page. There are lots of customizations and tweaking that you can do, but this will get you started. I hope that you have found this useful as it took me many hours of research and playing to get it working for me. Hopefully I have saved you the headaches!</p>
<p>Need some help? Visit our website at <a title="Be Loud Communications" href="http://www.beloudonline.com" target="_blank">www.beloudonline.com</a> and contact us. We look forward to hearing from you.</p>
<p><strong><a href="http://www.beloudonline.com"><img title="Be Loud Logo" src="http://www.beloudonline.com/facebook/Logo3.gif" alt="Be Loud Communications" width="257" height="146" /></a></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beloudonline.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beloudonline.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beloudonline.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beloudonline.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beloudonline.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beloudonline.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beloudonline.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beloudonline.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beloudonline.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beloudonline.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beloudonline.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beloudonline.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beloudonline.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beloudonline.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=92&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beloudonline.wordpress.com/2011/02/18/facebook-iframe-tab/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1384dde2d5b00ce5b9ae8adfcb5099b8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beloudonline</media:title>
		</media:content>

		<media:content url="http://www.beloudonline.com/facebook/Logo3.gif" medium="image">
			<media:title type="html">Be Loud Logo</media:title>
		</media:content>
	</item>
		<item>
		<title>The Power of YouTube as a search engine</title>
		<link>http://beloudonline.wordpress.com/2011/02/15/the-power-of-youtube-as-a-search-engine/</link>
		<comments>http://beloudonline.wordpress.com/2011/02/15/the-power-of-youtube-as-a-search-engine/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 15:56:00 +0000</pubDate>
		<dc:creator>beloudonline</dc:creator>
				<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Be Loud Communications]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Ryan Ligeza]]></category>
		<category><![CDATA[Yahoo]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://beloudonline.wordpress.com/?p=78</guid>
		<description><![CDATA[It is well known that Google is the largest Search Engine out there. Their brand recognition is to the point that Google has become a verb, as in &#8220;don&#8217;t worry about explaining it to me, I&#8217;ll just Google it later.&#8221; &#8230; <a href="http://beloudonline.wordpress.com/2011/02/15/the-power-of-youtube-as-a-search-engine/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=78&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It is well known that Google is the largest Search Engine out there. Their brand recognition is to the point that Google has become a verb, as in &#8220;don&#8217;t worry about explaining it to me, I&#8217;ll just Google it later.&#8221;</p>
<p>Which search engine comes in second though? Many still say Yahoo followed by Bing in third place, but they would be incorrect. The second largest search engine on the internet today is YouTube and has been that way since 2008.</p>
<p>Think about it for a second, if you were trying to figure out how to do something &#8211; changing a flat tire for instance &#8211; would you prefer someone to show you or read it from a book? Most people would learn quicker from someone showing them.</p>
<p>Now think about something a little more complex, lets say installing a new DVD drive into your computer. Not only would it be easier to do if you had someone to show you, but think of how much faster it would be.</p>
<p>It starts to make a little more sense that YouTube is the second largest search engine.</p>
<p>In researching this article I came across a promising theme. It seems (according to the other articles I found) the majority of &#8220;YouTube as a Search Engine&#8221; users are younger. There were references to children and teens using YouTube to help them succeed at their video games, research homework, or for entertainment.</p>
<p>What is promising about this is that these younger users are becoming more comfortable with this medium and as they age they will use it more and more. The topics of the searches may switch from Video Game Cheats to Best Vacation Beaches, but their level of use and comfort will remain.</p>
<p>While currently the videos on YouTube may tend towards topics of entertainment, it is not to say that it is not a reference source. There may be limitations to the complexity of the subjects of the videos, but most subjects can get broken into smaller comprehensible parts.</p>
<p>Google and text on the internet are never going to be replaced, but YouTube as a search engine is definitely going to keep growing. The questions is, growing at who&#8217;s expense?</p>
<p>Another interesting tidbit is that YouTube is owned by Google. Kinda makes it seem an uneven playing field for Yahoo and Bing&#8230;</p>
<p>For Internet Marketing, Social Media Marketing or Graphic and Website Design, visit our website at <a title="Be Loud Communications" href="http://www.beloudonline.com" target="_blank">www.beloudonline.com</a> and contact us. We look forward to hearing from you.</p>
<p><strong><a href="http://www.beloudonline.com"><img title="Be Loud Logo" src="http://www.beloudonline.com/facebook/Logo3.gif" alt="Be Loud Communications" width="257" height="146" /></a></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beloudonline.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beloudonline.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beloudonline.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beloudonline.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beloudonline.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beloudonline.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beloudonline.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beloudonline.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beloudonline.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beloudonline.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beloudonline.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beloudonline.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beloudonline.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beloudonline.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=78&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beloudonline.wordpress.com/2011/02/15/the-power-of-youtube-as-a-search-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1384dde2d5b00ce5b9ae8adfcb5099b8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beloudonline</media:title>
		</media:content>

		<media:content url="http://www.beloudonline.com/facebook/Logo3.gif" medium="image">
			<media:title type="html">Be Loud Logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Email form &#8211; simple PHP &#8211; PHP side part 2</title>
		<link>http://beloudonline.wordpress.com/2011/02/01/email-form-part-2-2/</link>
		<comments>http://beloudonline.wordpress.com/2011/02/01/email-form-part-2-2/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 18:15:24 +0000</pubDate>
		<dc:creator>beloudonline</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[Be Loud Communications]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Ryan Ligeza]]></category>

		<guid isPermaLink="false">http://beloudonline.wordpress.com/?p=76</guid>
		<description><![CDATA[Now that we have explained to you how to prepared the email to be sent, we have to tell the server what to do. Step 2. So lets start by saying IF the submit button was pressed, than do everything &#8230; <a href="http://beloudonline.wordpress.com/2011/02/01/email-form-part-2-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=76&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now that we have explained to you how to prepared the email to be sent, we have to tell the server what to do. Step 2. So lets start by saying IF the submit button was pressed, than do everything listed between the brackets. If the submit button was not pressed, than do everything written between these brackets. If or else.<br />
if(isset($_POST['submit'])) { }<br />
else { }</p>
<p>The good thing about PHP is that it reads through the code. So we are going to tell it that if the submit button was pressed, then please prepare the email, let the visitor know by printing &#8220;Your Message Was Sent&#8221; to the screen, and then send the email. We tell it to print to the screen like this:<br />
echo &#8220;Your Message Was Sent!&#8221;;</p>
<p>and to send the email to you like this:<br />
mail($to, $subject, $body);</p>
<p>So the entire &#8220;if the submit button was pressed&#8221;, gathering info, preparing email, notifying the visitor, and mailing is written like this:<br />
if(isset($_POST['submit'])) {<br />
$to = &#8220;your@email.com&#8221;;<br />
$subject = &#8220;Email from website form&#8221;;<br />
$name_field = $_POST['name'];<br />
$email_field = $_POST['email'];<br />
$message = $_POST['message'];<br />
$body = &#8220;From: $name_field\n E-Mail: $email_field\n Message:\n $message&#8221;;<br />
echo &#8220;Your Message Was Sent!&#8221;;<br />
mail($to, $subject, $body);<br />
}</p>
<p>If the submit button was not pressed, or there was an error, then you will want to say something like &#8220;Error, please return and fill out the form again.&#8221; As we stated already, the way to print to the screen is with echo &#8220;&#8221; so we would say this as:<br />
else {<br />
echo &#8220;Error, please return and fill out the form again.&#8221;;<br />
}</p>
<p>The last touch is to let the browser know that when it is encountered, that this is PHP code. We do this by surrounding all of this code with PHP tags. So at the beginning you place an opening tag &lt;?p and at the end you place the closing tag ?&gt;</p>
<p>That is all there is to it. Hopefully this is explained in a way that you understand the code and what each line achieves. Again, this is a simple code and there are alot of areas to be improved upon such as empty fields or email verification, but this code will give your visitors a means to email you directly from your website.</p>
<p>Here is the complete PHP code:</p>
<p>&lt;?php<br />
if(isset($_POST['submit'])) {<br />
$to = &#8220;your@email.com&#8221;;<br />
$subject = &#8220;Email from website form&#8221;;<br />
$name_field = $_POST['name'];<br />
$email_field = $_POST['email'];<br />
$message = $_POST['message'];<br />
$body = &#8220;From: $name_field\n E-Mail: $email_field\n Message:\n $message&#8221;;<br />
echo &#8220;Your Message Was Sent!&#8221;;<br />
mail($to, $subject, $body);<br />
} else {<br />
echo &#8220;Error, please return and fill out the form again&#8221;;<br />
}<br />
?&gt;</p>
<p>Need some help? Visit our website at <a title="Be Loud Communications" href="http://www.beloudonline.com" target="_blank">www.beloudonline.com</a> and contact us. We look forward to hearing from you.</p>
<p><strong><a href="http://www.beloudonline.com"><img title="Be Loud Logo" src="http://www.beloudonline.com/facebook/Logo3.gif" alt="Be Loud Communications" width="257" height="146" /></a></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/beloudonline.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/beloudonline.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/beloudonline.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/beloudonline.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/beloudonline.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/beloudonline.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/beloudonline.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/beloudonline.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/beloudonline.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/beloudonline.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/beloudonline.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/beloudonline.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/beloudonline.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/beloudonline.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=beloudonline.wordpress.com&amp;blog=18775348&amp;post=76&amp;subd=beloudonline&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://beloudonline.wordpress.com/2011/02/01/email-form-part-2-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1384dde2d5b00ce5b9ae8adfcb5099b8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">beloudonline</media:title>
		</media:content>

		<media:content url="http://www.beloudonline.com/facebook/Logo3.gif" medium="image">
			<media:title type="html">Be Loud Logo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
