Simply locate inside the .js file the following portion:
Code:
<td class="b"/> \
<td class="body"> \
<div class="content"> \
</div> \
<div class="footer"> \
<a href="#" class="close"> \
<img src="'+this.close_image+'" title="close" class="close_image" /> \
</a> \
</div> \
The part in red pertains to the footer area, including the Close button. You can move that upwards, such as:
Code:
<td class="b"/> \
<td class="body"> \
<div class="footer"> \
<a href="#" class="close"> \
<img src="'+this.close_image+'" title="close" class="close_image" /> \
</a> \
</div> \
<div class="content"> \
</div> \
Bookmarks