Topic: How to add an image @ the '' main '' ??

I want to add an image that refers to my forum.
Like ; you go to : '' www.mysitename.com''  and you see an image with '' ENTER ''
And you can click on it, and when you click on it, you go to '' www.mysitename.com/forums ''

Anyone knows how?

Re: How to add an image @ the '' main '' ??

just make the image and make the following html file:

<a href="mysitename.com/forums"><img src="myimage.jpg"></a>
FluxBB - v1.4.8

Re: How to add an image @ the '' main '' ??

Great, thanks!
But is there anyway I can also center it + adding a dark background?

4 (edited by lie2815 2007-06-27 10:15)

Re: How to add an image @ the '' main '' ??

<html><head><title>mysite</title>
<style type="text/css">
body {
 background-color: #000000;
}
a {
 text-align: center;
}
</style>
</head>
<body>
<a href="mysitename.com/forums"><img src="myimage.jpg"></a>
</body>
</html>
FluxBB - v1.4.8