Quote:
Originally Posted by kandalf
First off, Very nice work you did !
Now i got a problem and cant find the solution anywhere.
I added my logo to it but your logo is still in the background, any idee's ?
http://godsgrace.the-remedy.be/
|
See below...
Quote:
Originally Posted by ozzy47
How is it that you added your logo? You should have changed the stylevar titleimage, found under the group, ImagePaths.
|
Correct ^ and thanks Ozzy.
The css for the header logo still references the stylevar "titleimage"

.
Code:
.abimage {
background: url({vb:stylevar titleimage}) center center no-repeat !important;
height: 155px !important;
margin-left: 0px !important;
}
Edit: Now that I took another minute to look at it, I realized you were simply trying to make the logo clickable as well, to do this simply edit template header...
Find:
Code:
<div class="ablogo">
<div class="abimage"><a name="top" href="{vb:link forumhome}"><vb:comment><img src="images/avenger_blue/misc/home.png" width="960px" height="150px" alt="{vb:raw vboptions.bbtitle}" /></vb:comment></a></div>
</div>
Fixed Width Replace with:
Code:
<div class="ablogo">
<div class="abimage"><a name="top" href="{vb:link forumhome}"><img src="images/avenger_blue/misc/home.png" width="960px" height="150px" alt="{vb:raw vboptions.bbtitle}" /></a></div>
</div>
Fluid Width Replace with:
Code:
<div class="ablogo">
<div class="abimage"><a name="top" href="{vb:link forumhome}"><img src="images/avenger_blue/misc/home.png" width="100%" height="150px" alt="{vb:raw vboptions.bbtitle}" /></a></div>
</div>
Now the logo is clickable.
*Additionally this utilizes a transparent image so anyone right-clicking to copy your logo will not be able to, they can still obtain the url via source code or firebug for example though.