You can solve the problem by following way
Open the index.php file of shaper_eduka template and search for the code below
<?php if($template->sp_isIe(8)) { ?>
<script type="text/javascript">
window.addEvent("load",function(){
$('sp-top').setStyle('height', $('sp-top').offsetHeight+'px');
});
</script>
<?php } ?>
And replace above code with below code and save.
<?php if($template->sp_isIe(8)) { ?>
<style type="text/css">
#sp-top {min-height:350px}
</style>
<?php } ?>