It's already done because people have it on their sites. I thought it was a widget but maybe they made it themselves.
I had to make something like that for ours,
http://eightphases.guildwork.com. Kind of a pita though to update manually, I'd prefer a widget. lol
i really like that. how did you set that up if you don't mind me asking?
The empy thing is a page in an iframe, I have an html file in my files. An iframe in a div inside an html widget. It also uses javascript files I had to upload. You can right click and get the source to the page.
The ls site itself is a combination of things, Mostly div layouts and hiders so I could make the banner larger etc.
Lots and lots of tinkering x.x
Super secret easter egg, you can totally draw on the banner for no reason. lol
Edit: Er I didn't use a div inside the widget after all. It just looks like this inside an html one:
Code
----HTML WIDGET---------
[code]<style type="text/css">
iframe { overflow-x:hidden; }
</style>
<iframe src="http://guildwork.s3.amazonaws.com/files/whateveryourfileisnamed.html" height="540" width="215" frameBorder="0" style="x-overflow: hidden;">
</iframe>
-------------------------