hi, i was wondering how i would add my own banner up at the top of my forum?
thanks for any help!
Yes its possible, depending on your theme you can add a code like:
echo '
<img src="http://bannerurl.com/image.png" alt="banner" border="0" />';
In your themes Index.template.php
i'm sorry, i'm a newb and that was a bit confusing... can you be a little bit more "step by step?" sorry! but thank you for your assistance!!!
OK, so you want to add a banner at the top of your forum right?
Assuming your using the default theme, in ./Themes/default/index.template.php
// Show the menu here, according to the menu sub template.
template_menu();
echo '
<img src="http://bannerurl.com/image.png" alt="banner" border="0" />';
Than please modify the image URL directly in that code.