I like the idea behind the friendfeed widget but wanted to customize it a bit. Here is an easy way to produce a lifestream feed for your website using a little bit of code. code to display the feed script src=”http://friendfeed.com/embed/widget/openelements?v=3&num=4&hide_logo=0&hide_comments_likes=0&hide_subscribe=0&width=330″ type=”text/javascript” Using CSS code, the thought bubble expands when the feed is finished loading. CSS for styling (works on modern browsers) .friendfeed Read more [...]
Tag Archives: CSS
How to add the service mark symbol with HTML
HTML has a tag known as <sup> which stands for superscript text. This tag properly places text half a character above the baseline. Example: bite size technology, design and marketing ideasSM In order to achieve the service mark symbol as you see above, you need to align your “SM” text to the top of its line-height and decrease the font size to 50% of its original size. The following code samples will produce the service mark symbol on your web pages. CSS code: sup { vertical-align: Read more [...]