Optiongroup - Captions on top of radiobuttons

Hi!
I am kind of hanging currently at a little layoutproblem.
I managed to change the orientation of an optiongroup from vertical to horizontal, but I also want to have the captions of each radiobutton on top of it and not on the right.

Is that possible?

Thanks in advance,

Steve

I am also interested in how to achieve this.

But can you tell me how you achieve the radioButtons (option group ) to be horizontally Aligned.

I used this as suggested at the forum http://vaadin.com/forum/-/message_boards/message/181980


.v-select-optiongroup-mystylename .v-select-option {
    display: inline-block;
}

But it doesn’t seem to work on firefox,chrome. But it works on opera.

If you add a float:left; it should work.
But there is still the quastion with the labels on top remaining :confused:

Here’s how:

.v-select-option label {
   display: block;
}

Cool thing, thank you very much.