Re: Activity Stream Design Layout
The activity stream already groups conversations. The items are simply being displayed in a single column.
Modifying the display can be achieved through css.
If you want to want to play around with it to mimic what you see on tv.adobe.com, start by adding the following to “ul.activity-list li”
float:left;
width:300px;
height:200px;
Then work on the inner nested divs to get stuff looking awesome!
Before making actual changes to your style.css file, use the Firebug for Firefox addon to play around and test. It helps zero in on what you want to change to achieve to effect you’re looking for.