I use Primefaces 2.1
I reference the css files like this:
<style type="text/css">
@import url("resources/css/skin.css");
@import url("resources/css/style.css");
</style>
In style.css I try to change the background color of the container in which the tabs are:
.ui-tabs-nav{
background-color:yellow;
}
This doesn't work. The change of the main tab container "works":
.ui-tabs{
background-color:yellow;
}