In my index.php inside my <body> i have the following code, this code is used to draw the main logo for my blog from the style.css... What i want is to have a different logo displayed depending on the domain they visit my blog on...
Code:
<div id="gif">
</div>
Now if someone on my domain example1.com i want it to do
Code:
<div id="gif">
</div>
if on example2.com do
Code:
<div id="GIF1">
</div>
Basically something to change which div id it loads depending on which domain the user is on.