I just saw the AllFacebook.com article showing that a new Facebook App had been designed by Timothy Mensing and Jason Padvorac. And folks it rocks. Here is what it does:

  • It can be easily connected to your Facebook Page
  • You do not have to edit the App in the Facebook Page Dashboard
  • All code editing is done on the App Page
  • You will have to know a little HTML
  • It allows content for Fans and Non-Fans – Show and Hide Content
  • It does not require any content to be uploaded on a server on your end. You just code and save like the old FBML way.

Here is a video of the process – step by step:

Want even more info? Consider becoming a Silver Level Member. It’s free but you have to ask. I share things here that don’t make it to the public.

Silver Level Member Bonus Material

[ismember]
[private_silver]

What code for the first box looks like:

<style type=’text/css’>

 

#wrapper {

 

width:520px;

 

height:500px;

 

margin:0 auto; border:0; padding:0;

 

position:relative;

 

}

 

</style>

 

<div id=”wrapper”>

 

  <div style=’width:520px;’>

 

     <img src='[Insert Image URL Here]’ />

 

displayed to non-fans –>

 

     <!– You can also add any HTML that you want displayed

 

to non-fans –>

 

 </div>

 

</div>

What code for second box looks like:

<style type=’text/css’>

 

#wrapper {

 

width:520px;

 

height:500px;

 

margin:0 auto; border:0; padding:0;

 

position:relative;

 

}

 

</style>

 

<div id=”wrapper”>

 

  <div style=’width:520px;’>

 

     <img src='[Insert Image URL Here]’ />

 

displayed to fans –>

 

     <!– You can also add any HTML that you want

 

displayed to fans –>

 

 </div>

 

</div>

Both parts are the same. The difference is the picture you will put in each and the text or coding you do that is different from the other. The key thing is that you can have different views for non-fans and fans. This gives them a reason to “Like” your Page.

[/private_silver]
[/ismember]