I've got a random question.
I've created a title image, and added it using this:
#blog-title a {
background:url(images/text2.png) no-repeat left center;
display:block;
text-indent:-9000px;
width: 327px;
height: 57px;
color:#000;
text-decoration:none;
Now, what I would like to do, is add the menu in the same #header div (and then the content will be below it). So I filtered out the menu, and added it back into in header div, like the example below:
<div id="header">
<?php thematic_header()?>
<div id="access">
<div class="skip-link">"><?php _e('Skip to content', 'thematic'); ?></div>
<div class="ml"><?php wp_page_menu('sort_column=menu_order') ?></div><div class="mr"></div>
</div><!-- #access -->
</div><!-- #header-->
The problem I run into is when I try and position it using CSS, no matter what I seem to add to it, it just seems to throw it all over the place.Mostly what I'm trying to do is keeping the header at 1000px, then add a left float to the header image, and a right float to the menu, but like I said, it just throws it all over the place when I do it. I know I've got something wrong here. Any help would be appreciated.
Thanks.