I think this is the relevant code in the header.php file:
\\\
<div id=”header”>
<div class=”headerleft”>
<h1>/”><?php bloginfo(‘name’); ?></h1>
<?php bloginfo(‘description’); ?>
</div>
\\\
But again, not sure what to change it to, or if I need to change the css file.
You add your logo as a background image in the stylesheet, here:
.headerleft {
width: 470px;
float: left;
margin: 0px;
padding: 0px;
overflow: hidden;
}
Thank you. I know where that is…
And exactly *how* would I do that? Again, please give me the code using the generic “your_logo.gif” in the code snippet.
*deep bow*
Again, thank you.
Put your logo image in the images folder of the theme!
.headerleft {
background: url(images/your_logo.gif) top left no-repeat;
width: 470px;
float: left;
margin: 0px;
padding: 0px;
overflow: hidden;
}
Let me be more specific [in order to be more efficient]:
How would this change if I were to use my log as a background image?:::
.headerleft {
width: 470px;
float: left;
margin: 0px;
padding: 0px;
overflow: hidden;
}
In other words: If I were to insert code that would make my log the background image, how would the above be different?
Thank you again for your time.
Read it above your post 🙂
Cool. We are definitely half way there. How do I get rid of the name and tag line:
http://evolutionaryawareness.com/
Moshu – thank you for the tip. It helped me with my logo also.