I've got RadioButtonList on a page. I want the radio buttons and labels to be horizontal
and on the same line. They just aren't, and it just awful IMO. Here's what it looks like now:
I don't want the radio button on it's own line, very wide at that, and then things like "Q2" underneath it. I'd like them to all be on the same line.
I've searched on the Web to try and find a solution to this, but every thing I've found (setting the style of the RadioButtonList to float left, or trying to assign that to the items, etc.) just isn't working. Here's what I've got so far in the third ContentPlaceHolder
that I have on the page:
<style>
.sameLine {
display: inline;
position:relative;
}
.rblFutureQuarter label {
float:left;
display: inline;
}
& ...
Go to the complete details ...