Facebook Website Integration – HTML


To integrate Facebook on to a website without the use of a facebook app you need these things:

Once you have both of those things you can do this in feedburner:

  • Add a new feed (your facebook url)
  • Go to the publicize tab
  • Go to BuzzBoost
  • Sroll down and fill out the form, you will be given html code.
  • <script src="http://feeds.feedburner.com/DanielFolkessFacebookStatusUpdates?format=sigpro" type="text/javascript" ></script>
    <noscript><p>Subscribe to RSS headline updates from: 
    <a href="http://feeds.feedburner.com/DanielFolkessFacebookStatusUpdates"></a>
    <br/>Powered by FeedBurner</p> 
    </noscript>
  • Preview:

And that’s it!
You can now style it up a little bit with some CSS and stuff.

Min-Height CSS Hack – Height – Minheight – IE – FF – Minimum

1
2
3
4
5
selection {
  min-height:450px;
  height:auto !important;
  height:450px;
}

This code will give min-height to all browsers. IE, FF, Opera, Safari and more.
Continue reading “Min-Height CSS Hack – Height – Minheight – IE – FF – Minimum”