View Full Version : Is it possible to add your own logo image
lightsuckers
03-30-2008, 04:20 AM
How can I add my logo on my website, check it out, www.lightsuckers.com
Scarabaeus
03-30-2008, 11:01 AM
upload your logo to your host or somewhere such as imageshack then add this html in where you want it to show.
<a href="url of site"><img src="url of image" /></a>
This very basic code, once you've added the correct links in, will show the image with a link to your homepage.
Crossie
03-30-2008, 02:09 PM
You may also do it in your templated CSS body-section like this:
body {
background: black;
color: #6a6a6a;
font-family: "Trebuchet MS", Tahoma, Verdana, Arial, sans-serif;
background-image: url(../your_logo.jpg);
background-position:20px 20px;
background-repeat:no-repeat;
background-attachment:fixed;
}
The file your_logo.jpg (or whatever it's filename is) must resist in the templates root directory. Check out my website (http://www.accessible.de/pixelpost) to see how it works.
Regards
Uwe
vBulletin® v3.7.3, Copyright ©2000-2013, Jelsoft Enterprises Ltd.