Align table caption on center

Hi all,

the previous css specification we used to center table captions on the header is not working anymore on Vaadin 7.

We tried to use unsuccessfully the following:

[code]
.v-caption .v-caption-small .v-caption-striped {
text-align: center;
}

[/code]They are still left-aligned :confused:

Any help would be appraciated.

Luca


SOLVED:

using the following

.v-caption .v-captiontext { float: none; } Hoping that it can help others :wink:
Bye,

Luca