I have been using the jquery function menu() to generate a menu, and it's working as expected. However, there is one aspect that I would like to customize: the white border around the menu button should be black instead.
You can see what I mean by visiting this link: http://jsfiddle.net/H776G/
I've tried modifying the background color using jQuery code like
$("#menu a").parent().css('background-color', '000000')
, but it hasn't had any effect. It seems like no matter what I try, the background remains white when I want it to be black.