Hi there.
I'm currently building my band website, but i'm having great difficulty when it comes to the picture you are about to see.
What i'm trying to do is get those two pieces to line up seamlessly, but I think that what i need to do is to somehow put the top picture into a table which is 680px wide (the width of the picture) and aligned left, whilst having that menu being the rest of the width (256px), aligned right. I have absolutely no idea how to do this, any help would be appreciated!
As you can see below, this is what my style.css looks like, and the two sections that directly affect this.
style.css
div#header {
margin: 0 auto;
width: 936px;
div#header ul {
color: #000;
text-transform: uppercase;
float: right;
font-size: 1.4em;
This is the part of header.php too
<div id="header">
<a href="<?php bloginfo('url') ?>" <img src="<?php bloginfo('stylesheet_directory') ?>/images/header1.png" alt="<?php bloginfo('name') ?>" /></a>
<ul>
<?php wp_list_pages('title_li='); ?>
</ul>
</div><!-- #header -->
Thank you in advance if you can help :)
~ T.