JournalInteret
Member
Posted 2 years ago #
Hello everyone,
here's the site: http://www.journalinteret.com
Under IE7, the titles won't show up.
The problem came when i used the info of this site to replace the title text with a logo:
http://www.thewpmag.com/quick-projects/replacing-header-text-with-an-image/
Also, if I don't use a white logo, weird but... the logo duplicates itself under every post title. Anyone got a clue? I don't ;)
Thanks a lot!
You have some validation and CSS errors that could be causing problems.
your theme uses the h1 tag for the blog title, but also for the post titles - therefore the logo under each post title.
to make this more specific:
h1 {
background: url(images/logo_site.png) no-repeat;
width: 450px;
height: 52px;
}
h1 a {
width: 450px;
height: 52px;
text-indent: -9000px;
}
change it to:
#logo h1 {
background: url(images/logo_site.png) no-repeat;
width: 450px;
height: 52px;
}
#logo h1 a {
width: 450px;
height: 52px;
text-indent: -9000px;
}
and - as @esmi said - check the validation errors.
JournalInteret
Member
Posted 2 years ago #
ahhhh thanks a ton guys/gals/aliens!!
JournalInteret
Member
Posted 2 years ago #
by the way, how can you see the css errors?
henkholland
Member
Posted 2 years ago #
JournalInteret
Member
Posted 2 years ago #
Well thank you :) *virtual hug*