I wanted to change the title link color in the facebook likebox. I've tried doing this with regular css but to no avail as the content and styles are being loaded from external sources into an iframe it seems.
These are the selectors in question:
.fan_box .connect_action .name { line-height: 15px; font-size: 14px; font-weight: bold; }
a { cursor: pointer; color: #3B5998; }
So either I need to change the color in .name or a to yellow. I tried the following and it did not work:
.fan_box .connect_action .name { line-height: 15px; font-size: 14px; font-weight: bold; color:#F90 !important; }
a { cursor: pointer; color: #F90 !important; }