Okay, I’m trying to make a greasemonkey script for facebook, and I need to change the color of the home button text to black, I managed to do it for the button that has your name on it, but I cant figure out how to do it for the home button!
This is how I did the button with your name on it, which works great!
$('.headerTinymanName').each(function(){
$(this).css('color', 'black');
});
This is the css it has for the home button, but I have no idea how to change the color!
.slimHeader #pageNav a{color:#d8dfea}
I’m very confused, any help would be greatly appreciated! 🙂
How about this GreaseMonkey script:
If you want to give all the
atags in the header a black color at once you could go along these lines:Alternatively, you could do it without jQuery. A slightly hackish suggestion along those lines would be: