I can't modify the output of this html but I can use CSS to move the items around. I saw this and know that I can move the elements around using that but I want the bullets to move below the words and center both. I'm trying get it to look like this using the html in this one. This is what I have so far
#edit-submitted-recommendation {
display: -webkit-box;
display: -moz-box;
display: box;
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
box-orient: horizontal;
}
.form-radio {
-webkit-box-ordinal-group: 2;
-moz-box-ordinal-group: 2;
box-ordinal-group: 2;
}
.option {
-webkit-box-ordinal-group: 1;
-moz-box-ordinal-group: 1;
box-ordinal-group: 1;
}