Active
Project:
Feed field (CCK module)
Version:
6.x-1.8
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
6 Apr 2011 at 04:57 UTC
Updated:
6 Apr 2011 at 05:23 UTC
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
Comment #1
As If commentedSure, 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:
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.