MyBB Community Forums

Full Version: How to make a homepage image for mybb forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys, first post here so hello Smile

I have my forum installed on my domain but i need to place an image file on the domain with a click the button below to enter. The image file is actually just text on the colour background that i need with two button images to enter the forum or to be redirected elsewhere ( my HTML skills are somewhat limited Blush ). I've tried adding the following to just get the image file as the first page to the domain by adding it to the index.html file but to no avail. Where am i going wrong?:

<a href="(my home page name).html" border="0"><img src="(my image name).jpg" border="0"></a>

thanks in advance Smile
This is What one Need to Do :-
<html>
<head>
<title>Your Forum Name Here</title>
</head>
<body>
<a href="Your_Forum_Link"><img src="Image_Link" alt="image name" /></a>
</body>
</html>

Link has no border so, Your COde :- where you have Written :-
<a href="some_link" border="0"... // <-= This is wrong. Do not Put border="0" in <a href=

See Above in code.
Brilliant thanks, will sort that out now Smile
(2011-07-17, 12:16 PM)Chef_uk Wrote: [ -> ]Brilliant thanks, will sort that out now Smile

No Problem Have fun Smile