Is there a way to adjust the widths of the heading and div elements after adding edit and delete icons to match the standard accordion style? Thanks
<div id="accordion">
<h3><a href="javascript:;">
<span style="float:right;" class="ui-icon ui-icon-pencil hand" onclick="javascript:doEdit();"></span>
<span style="float:right;" class="ui-icon ui-icon-trash hand" onclick="javascript:doDelete();"></span>
<span>Created By: J Doe</span>
</a>
</h3>
<div>
<p>test</p>
</div>
</div>