Pf, I looked everywhere here and tries everything but I can't get it done.
All I want is to get rid of the header text and replace it with an image! But how??? See this site: http://www.mennomail.nl/bloeddorst/bloeddorstWP/
This is what style.css says:
#header {
min-height: 75px;
height: auto !important;
height: 75px;
}
#header #text {
font-family: Myriad, "Myriad Pro", Palatino, "Rotis Sans Serif", serif;
font-style: italic;
margin: 10px 0 0 10px;
}
#header #text h2 {
font-size: 16px;
font-style: italic;
color: #333;
}
and here's the header.php:
<body>
<div id="wrap">
<div id="header">
<div id="text">
<h1><a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a></h1>
<h2 class="description" id="tagline"><?php echo bloginfo('description'); ?></h2>
</div>
</div>