I am using Feed field (CCK module) to pull twitter feeds. Is there a way to style the output of feeds (say twitter feeds) using css?

Thank you.

Comments

As If’s picture

Sure, but the actual CSS would depend on where you have it set up. In a typical case, displaying the feed right in the node, each feed is in a DIV class='field_item' and each individual feed item is in a DIV class='feed-wrapper'. So if your nodes are in a DIV class='node' you should be able to theme them like this:

.node .field_item { border: 1px solid red; } 
.node .field_item .feed-wrapper { font-weight: bold; }

or whatever.

But if you are displaying these fields in a View, the CSS selectors would be different.

I encourage you to install Firebug (if you are a Firefox user) or the Microsoft Developers Toolbar (for IE 6-7). These tools allow you to look at the DOM structure of every element on the page, so you can target it via CSS selectors.