MyBB Community Forums

Full Version: Whats the img code for the template?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Whats the img code for the template?

I mean, i want to add a small ( i mean small) picture to the footer of my forum. But how do i do it?

Thanks guys Smile
-wilbso
Admincp -> Templates & Style -> Templates -> Your Template Set -> Footer Templates -> Footer

Use html, like this:

<img src="URL_HERE"/>
(2012-06-29, 08:04 PM)vernier Wrote: [ -> ]Admincp -> Templates & Style -> Templates -> Your Template Set -> Footer Templates -> Footer

Use html, like this:

<img src="URL_HERE"/>
Thank you man Smile
But i got another question, how do i make a paragraph in the footer, i mean, so the image is below the theme credits.

thanks
Either wrap the image within <p></p> tags or use <br /> to insert a line break.
Thank you to everyone who helped me Smile I have added reputation points to the people that helped me.

Just one last question: How do i writing and pics etc to the side at the footer too. Like this website: http://forum.xda-developers.com/forumdisplay.php?f=846
Take a look at the screenshot:

[attachment=26708]

At the bottom there, it has info to the side at the footer too, can anyone tell me how to do that please?

thank you for your help guys Smile
Admincp -> Templates & Style -> Templates -> Your Template Set -> Index Page Templates -> Index

You could use something like this for text:
<div class="float_right">Text</div>

Or this for an image:
<div class="float_right"><img src="IMAGE_URL"/></div>

Add that before:
<br style="clear: both" />
(2012-06-30, 08:18 AM)vernier Wrote: [ -> ]Admincp -> Templates & Style -> Templates -> Your Template Set -> Index Page Templates -> Index

You could use something like this for text:
<div class="float_right">Text</div>

Or this for an image:
<div class="float_right"><img src="IMAGE_URL"/></div>

Add that before:
<br style="clear: both" />

Thank you Smile

So, the <div class="float_right">Text</div> code, could i also put text into the centre of the footer too? Because i have already tried modyfiying the code so it was <div class="float_centre">Text</div> but that didnt work,

Is there a way to put text into the centre then? If yes, what would the code be?

thank you Smile
Float Center doesn't exist.

You could add this:

<div style="text-align:center;">Text here</div>

Add it after:

<br style="clear: both" />
(2012-06-30, 08:45 AM)vernier Wrote: [ -> ]Float Center doesn't exist.

You could replace:

<br style="clear: both" />

with this:

<br style="clear: both" />
<div style="text-align:center;">Text here</div>
<br style="clear: both" />
hmmm, ok, thanks Smile added reputation points to you Smile
Thanks - happy to help Smile
Pages: 1 2