You might try playing around with the CSS for the title field of your RSS to get that desired look. For example, it may look something like this:
Code:
#example3 a{ /*CSS specific to demo 3*/
color: #D80101;
text-decoration: none;
font-weight: bold;
display:block;
float:left;
width:200px;
height:50px;
}
where "#example3" is the ID of your RSS feed container. The part in red is new- it forces the title of each RSS entry to be a block element with explicit dimensions, forcing the description to wrap around it. The result should be something close to what you're describing above.
Bookmarks