I Need CSS Help
by Nathan on Oct.02, 2007, under Uncategorized
So I did a little more work on the site over the weekend. I created a header image, and updated to WordPress 2.3. I think I will be going back to an earlier version of wordpress, as I don’t like how the tags are being supported. Anyway I have a problem, if you try to click on the header image it doesn’t link anywhere. I want it to link to the home page. So here is the css that is displaying the image, if anyone know how to fix it, please let me know.
-
.blogdescription {
width:261px;
height:22px;
background:url(images/dedicated_text.png) no-repeat right bottom;
padding-left:325px;
padding-top:85px;
text-indent:-9999px;
display:block;
float:left;
}
Oh and by the way, I would hold off on WordPress 2.3, lots of plugins break.
Update: I am back running on 2.2.2, I had a few problems but i think its all worked out.


October 8th, 2007 on 7:19 am
Ok I just edited the css in .mainlogo and deleted both .logodivider & .blogdescription from the style sheet.
#header .mainlogo{
width:700px;
height:124px;
text-indent:-99999px;
float:left;
cursor:pointer;
background:url(images/yourheaderimagehere) no-repeat 0 0;
margin:4px 0 0;
}
Then in your header.php just comment out or delete…
October 8th, 2007 on 7:44 am
Sorry… Then in your header.php just comment out or delete…
<span class="logodivider"></span> <span class="blogdescription">Your site description</span>
You should then have a working header that will link back to your mainpage.