I am attempting to change the font (color and eventually other attributes) of the news headlines found at www.sharedsymptoms.com/drupe. The first headline is "This will give us an idea about the appearance...". However I can't seem to affect the styling of this field type.

I know this is probably a simple solution, but as a beginner I am not able to solve the problem. Thanks for any suggestions.

Comments

francort’s picture

You will need to modify your theme's stylesheet.
In your case, it is located on: drupe/themes/amadou/style.css
In that file, you can change the attributes of the headlines. You 'll need some skills in CSS to do that, but not much.
I think if you add something like

/*******************************/
/*drupe/themes/amadou/style.css*/
/******************************/
#mainContent .field-field-headline .field-item a{
     color: #FF0000;
}

then your headlines will be red.