I need help moving the buttons above the chart in my JS Fiddle to the right-hand side.
When I apply the class pefBut to the div with the id range-butts-index, the buttons disappear. However, when I remove the class, the buttons reappear on the left side. I'm puzzled as to why adding this class causes the buttons to vanish?
html
<div id="IndexArea">
<div id="range-butts-index" class='perfBut'>
<button class="ui-button ui-widget ui-corner-all" data-range="5">5d</button>
<button class="ui-button ui-widget ui-corner-all" data-range="20">MTD</button>
<button class="ui-button ui-widget ui-corner-all" data-range="999">Max</button>
</div>
<div id="chartIndexPerf"/div>
</div>
css
.perfBut {
float: right;
}