Help CSS Problem

Hi guys,

I just want to ask what css code I will use to make this " Biliran Island Twitter" text to white color?

here is the link http://biliranisland.com/blogs/

thanks

It partly depends on where you need this rule to apply. All <a>s are currently set to green. One option is to do this:

.sideh em a {
  color: #fff;
}

it works thank you