by taking the idea in this
thread you can get this to work.
1) in 'Configure Header Area' add the following as the first entry
HTML Code:
<?php bfa_widget_area('name=Quotes Area'); ?>
2) Go visit your site (this will create the new widget area
3) Go to the widgets area and you will now see a widget 'Quotes Area' - put the quotes widget in it.
4) add the following to the 'CSS Inserts' option
HTML Code:
#wrapper {position: relative;}
div#quotes_area {
border-spacing: 0;
left: 30px;
position: absolute;
top: 100px;
width: 80%;
z-index: 99;
}
you may need to change the width, left and top to put it where you want.