Originally Posted by
mule
Oh, and when you switch to the black template, it displays the default vshare logo and watermark.
Replace templates/css/black/images/logo.jpg
Or if you need to use default logo, edit
templates/css/black/black.css
Find
Code:
#header h1 {
margin: 0px;
padding: 0px;
background: transparent url(./images/logo.jpg) no-repeat;
text-indent: -9999px;
float: left;
display: inline;
}
Replace with
Code:
#header h1 {
margin: 0px;
padding: 0px;
background: transparent url(../images/logo.jpg) no-repeat;
text-indent: -9999px;
float: left;
display: inline;
}
Bookmarks