Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Different Logo For Each Page Reply To: [Solved] Different Logo For Each Page

#189567
Senff
Participant

Your logo link has an IMG element to show the logo, but you’re trying to change it by using background images. That won’t work (unless you remove the IMG in some way):

<div>
    <a href="http://unitednews.sr" title="" rel="home"><img src="//unitednews.sr/wp-content/uploads/2014/11/logo6.png" alt="" /></a>
</div>

Second: on the News page, there already isn’t a logo — it’s a missing image: http://unitednews.sr/wp-content/uploads/2014/11/logo6.png

And lastly, you said you tried this code to change the logo on the Magazine page:

.category-3 #logo a { background: url(http://unitednews.sr/wp-content/uploads/2014/11/logomag.png) no-repeat; }

However when I look in your CSS, that code doesn’t appear anywhere.