At Movie Estate, I want to add my RSS and Twitter buttons in the header, opposite the page links. However, when I put the code into header.php, it always ends up being too high and too far to the left.
That's the code I'm dealing with. The masthead div is where the links are kept, and I need help - will I have to add something into the CSS? The theme I'm using is Tropicala.
Code:
<div id="wrapper">
<div id="masthead">
<ul>
<li <?php if(is_front_page()) { ?>class="current_page_item"<?php } ?>><a href="<?php echo get_option('home'); ?>/">Home</a></li>
<?php wp_list_pages('sort_column=menu_order&title_li=' ); ?>
</ul>
<div id="masthead_image">
<a href="<?php echo get_option('home'); ?>/"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/masthead.png" alt="Movie Estate" /></a>
</div>
</div>







