FOUND IT
…. and God Almighty – the theme creator needs smacked around the head for this one.
In both header.php and header-portfolio.php look for this code –
<style>
#logo {
<?php
$margin = get_option('margin_top');
if (!empty($margin) && $margin==0) { ?>
margin-top: <?php echo $margin;?>px;
<?php } else { ?>
margin-top: 50px;
<?php } ?>
}
</style>
See that line ” margin-top: 50px; ” ?
Change that and leave the theme options page empty (i.e. don’t add a setting to it).
I have no idea why the designer thought it necessary to add a conditional in there, nor to have two header files – nothing in the theme notes, nor on his site explain the logic of it.
Hope it helps
Gaz