This theme is not designed by me but I am using it at phpBBcast.com. Came across some bugs and just like to share the fixes for them. These changes applies to a fresh Blogging Pro Theme [widgets ready]. If you have modified it or using the non-widgets version, the following code snippets may vary.
1) If you do a search and click on “Previous Entries” in the search results page, it brings you to the main blog’s page 2 (instead of the search results page 2).
File to be edited: header.php
Replace
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
With
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="get">
2) Non-align search corner in Iternet Explorer

File to be edited: header.php
Replace
<div class="SearchCorner"></div>
With
<div class="SearchCorner"> </div>
3) Top blue bar does not show up intermittently

File to be edited: style.css
Replace
#bgcontain { width: 100%; background: url(./images/bkg_bgcontain.png) repeat-x;}
With
#bgcontain { width: 100%; }
4) Footer with extra space and characters in Internet Explorer

File to be edited: footer.php
Replace
<?php do_action('wp_footer', ''); ?>
With
<ul><li></li></ul>
<?php do_action('wp_footer', ''); ?>