HOW TO PLACE AN SMF BANNER OR HEADER?
1. Place banner or image at theme's image directory. ex. /themes/default/images/logo.jpg
2. Open index.template.php
3. Below the <body>, look for the line
if (empty($settings['header_logo_url']))
echo '
<span style="font-family: Verdana,
sans-serif; font-size: 140%; ">', $context['forum_name'], '</span>';
else
4. Replace
<span style="font-family: Verdana, sans-serif; font-size: 140%; ">', $context['forum_name'], '</span>[/code]
with
<img src="', $settings['images_url'],
'/logo.jpg" style="margin: 0px;" alt="', $context['forum_name'], '" />[/code]
logo.jpg can be replaced with the filename of your image
Other option. Go to your Admin Panel --> Configuration Panel --> Current Theme
-->Theme Options and Preferences. On the box of [color=red]Logo Image
URL:[/color], place the location of your banner. Goodluck :)
HOW TO PLACE AN SMF BANNER OR HEADER?