I would use JavaScript to move the Flare DIV inside the breadcrumb div, then apply CSS rules to pretty it up.
Go to
Appearance > Montezuma Options > Head > Insert Code and insert this code into the
Bottom field:
Code:
<script>
jQuery(document).ready(function($){
$("#breadcrumbs1").after($(".flare-horizontal"));
});
</script>
The jQuery
ready function will execute after the document has loaded. The one line of code inside the function will take the horizontal Flare DIV and insert it after the
breadcrumbs1 DIV (which is inside the
breadcrumbs1-bg DIV).
Then, as JerryC mentioned above, you'll need to apply some CSS rules to make the DIVs inline-block so they'll sit on the same line.