The following works for me in both 1.5 and 1.6:
.navbar {background-color: red;}
You've got a space between your dot and 'navbar' in your post, if that's present in your CSS too, that could be the problem. Running your CSS through a validator helps to pick up these potential little troubles.
If that's not the case then make sure that you're adding your new CSS after anything else that's setting the color of the navbar, later CSS will overule earlier settings.
I'd also recommend the Web developer extension for Firefox. It can be a great help in examing the structer of web pages and its edit CSS function lets you try things out and see the results live.