Looking to spruce up a Toolbar with a title using jQuery UI.
This is what I have so far:
HTML:
<div class="demo">
<span id="toolbar" class="ui-widget-header ui-corner-all">
<label>go to beginning</label>
<button id="Submit">Submit</button>
</span>
</div>
CSS:
#toolbar {
padding: 10px 4px;
width: 500px
}
Javascript:
$(function() {
$( "#Submit" ).button({
});
});
Link:
The current layout doesn't quite work for a toolbar with a title. I want to make it full-width and ensure the button stays within the toolbar.
Can this be achieved?
Any suggestions for a simpler or more appealing design?
Thanks