ah ok joni, here you go, to show you what i mean this is what is happening
Here is my site
http://tinyurl.com/yfov9au
Here is the location of style.css
http://tinyurl.com/yzprglc
i.e6.css
http://tinyurl.com/yk2lr4d
i.e7.css
http://tinyurl.com/yz9sfkt
The container.png is the middle white area and you can see that in the style.css its being told to repeat itself downwards, shown below
/*------------------------------------------------
Containers
--------------------------------------------------*/
#container {
width: 978px;
margin: 0 auto;
background: url(images/container.png) repeat-y;
}
/*------------------------------------------------
That is fine but its starting at the very top and i need it to start around 150px in from the top so that the navigation comes first
Now one more thing to add in the header.php the code shows this
<body>
<div id="container">
<div id="header">
<?php
if ($celadon_text_header == "true") { ?>
<?php
if (get_bloginfo('description')) { ?>
<a href="<?php echo get_bloginfo('url') ?>" id="logo_with_tagline"><?php echo get_bloginfo('name'); ?></a>
<span id="tagline"><?php echo get_bloginfo('description') ?></span>
<?php } else { ?>
<a href="<?php echo get_bloginfo('url') ?>" id="logo"><?php echo get_bloginfo('name'); ?></a>
<?php } ?>
<?php } else { ?>
<a href="<?php echo get_bloginfo('url') ?>" id="header_home_link"></a>
<?php } ?>
<div id="header_search">
<form method="get" id="site-search" action="./" >
<fieldset>
<label for="search_input" class="overlabel">Search</label>
<input type="text" value="" name="s" id="search_input" />
</fieldset>
</form>
</div>
</div>
<div id="navigation">
<div id="subscribe">
Here is what my theme looked like before i removed the header image
http://tinyurl.com/yk25waz
Now i removed the header image as i want to have my bg.png visible and after removing that i thought i woud be able to see my background but instead i see the container.. look
http://tinyurl.com/ykxh8uc
what it needs to look like is this
http://tinyurl.com/yhzrp4s
but as you can see the only way i can get it to show the background at the top is by completely deleting my container.png file
http://tinyurl.com/yl3noqm
but then the middle part of my site where blog posts occur is not showing the white.