MyBB Community Forums

Full Version: Clickable picture in the homepage ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there,

i have a picture and link, and i want to make a clickable picture to appear below the header at the homepage of my website.

How i do that?

Regards,
Caspoor.
Where exactly do you want to have the image on your forum? Picture preferred. Also, are you basically talking about an advertisement?

If you already have the image set up and just want it to become clickable then take a look at the code below for example:

<a href="http://www.natural-environment.com/places/milford_sound.php" target="_blank">
<img src="http://www.quackit.com/pix/milford_sound/milford_sound_t.jpg">
</a>

Basically, add the link in HTML then before closing the tag with </a>, add the path to your image using the following code:

<img src="PATH TO IMAGE">
Admin CP -> Templates & Style -> Templates -> Expand your template -> Header Template

And just paste the code on the bottom: <center><img src="imageurlhere"/></center>
(2013-08-08, 10:35 PM)k1R@ Wrote: [ -> ]Admin CP -> Templates & Style -> Templates -> Expand your template -> Header Template

And just paste the code on the bottom: <center><img src="imageurlhere"/></center>

I want it clickable ^^ image url + link
I've updated my first post with the solution. Please take a look.