Hi Tom,
I’m using the custom header php you provided in post #111841and it worked great, but I end up with a narrow white strip between the custom header image and the main nav bar below it. I’ve sen a few others post about this, but I haven’t had luck with fixing it.
Using GP Hooks and this php:
<?php
global $post;
$image = get_post_meta($post->ID, ‘custom_header’, true);
if ( ! empty( $image ) ) : ?>
” alt=”” />
<?php else : ?>

<?php endif; ?>
I tried the fix you mention in post #98734, but didn’t have any luck:
.inside-header img {
position: relative;
vertical-align: bottom;
}
Stumped….