Did you know Twitter provides you with a list of CSS classes that you can use to change how your tweets look on your website? If you aren’t already logged into your twitter account, go ahead and login. Next, go here: http://twitter.com/badges. The ‘badge’ we’ll want to use isn’t readily available, because we’ll be customizing our own; So, check the radio button for the “Other” option.

You’ll be introduced to three new choices: Flash, Flash With Friends, and HTML/Javascript. Go ahead and select the HTML/Javascript option.

The next menu allows you to specify certain things that affect how your tweets are listed. Essentially there are two; The title of your tweet list and how many tweets you’d like to display. Have a look at the “Get The Code” box; This is what you would paste into your website.

Let’s have a look at my own Twitter code
1 2 3 4 5 6 | <div id="twitter_div"> <h2 class="sidebar-title">Twitter Updates</h2> <ul id="twitter_update_list"></ul> </div> <script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script> <script type="text/javascript" src="http://twitter.com/statuses/user_timeline/CHennis.json?callback=twitterCallback2&count=5"></script> |
Let’s start by me showing you my own CSS class specifications:
1 2 3 4 5 | div#twitter_div { width:300px; height:auto; margin-top:35px; border:#000 1px solid } h2.sidebar-title { color:#ddd } ul#twitter_update_list { font-size:11px } ul#twitter_update_list li { padding-top:15px } ul#twitter_update_list a { color:#fe9148 } |
And this CSS code produces this..

That’s pretty much it, folks! Have fun and don’t be nervous about experimenting to find that perfect look.
This is useful, thanks!
I’ll use this one for the Rewrite of my Flicks Website. Thanks!
Hey man, thank you for the comment. By the way, I’m still working on the videos. I’m looking for the best way to upload them to the JungleJar web server and stream them from there.
I haven’t forgotten about you, and I’ll be in touch soon.