I would like to add a margin (border: 1px solid #bbb;) to the rss feed item page of the fooaggregator module (http://drupal.org/project/fooaggregator) but I'm not sure how to go about doing this....I'm assuming I would edit the syle.css file (I'm currently using the litejazz theme http://drupal.org/project/litejazz), however I'm not very familur with theming for drupal....please advise and thanks.

Comments

pbarnett’s picture

Get the Firefox Web Developer plugin and use the CSS 'View style information' function to look at your site; it will tell you the CSS applied to the relevant section so you know what to change.

awb7422’s picture

turns out defining the following section in style.css was what I needed:
.node .view-content-fooaggregator-feed .node {

Thanks for your help.