Simple CSS

http://howeshousing.co.uk

I am trying to use css to style a certain piece of text on the home page, which starts: “Howes Housing offer a variety of one bedroom cottages and shared a…”

I have tried #textwidget and .text-2 but I can’t seem to find the correct div class/id to style this certain area. I know I can use inline styling for this but would prefer to have all of my css on the stylesheet.

Thanks in advance

You have the class and ID selectors mixed up. textwidget is a class (.textwidget {}) and text-2 is an ID (#text-2 {}).

Doh! Thanks for that, solved the problem (y)