Ok I have your solution goto your header.php or footer.php.
As you see there is alot of php like
Code:
include 'random.php';
Now lets do this in steps!
1. Make a new .php file named lets say... logo.php
2. Put your code in it can be either HTML or PhP for eg:
Code:
<html>
<head>
</head>
<body>
Bla bla bla
<img src="http://www.vodahost.com/vodatalk/vb3bluesaint/misc/logo.gif" >
</body>
</html>
So some stuff like that
3. Goto your header.php or footer.php and add this code close to the top.
Code:
include 'logo.php';
But remember must be in between the
tags or you will get nothing.
And thats all to it you can see my example here.
Donclurd!
Good luck with it :D