This code (From "Themes/ApolloBB/index.template.php"):
PHP Code:
// Show the logo. It'll be either the default image, or one you set in the Theme Settings. The stock logo is logo.gif in the images directory for each color.
if (empty($settings['header_logo_url']))
echo '
<a href="', $scripturl, '" class="topimg"><img src="', $settings['images_url'] . '/'. $settings['theme_main_color'], '/logo.gif" style="margin: 0px;border: 0 none;height: 89px" ', (empty($settings['show_name_near_logo'])) ? 'alt="'.$context['forum_name'].'"' : 'alt=""' ,' title="', $context['forum_name'], '" /></a>';
else echo '
<a href="', $scripturl, '" title="', $context['forum_name'], '" class="topimg"><img src="', $settings['header_logo_url'], '" style="border: 0 none;vertical-align:middle;margin: 0px;" ', (empty($settings['show_name_near_logo'])) ? 'alt="'.$context['forum_name'].'"' : 'alt=""' ,' /></a>';
echo '
</td>';
Will need to be changed to this
PHP Code:
// Show the logo. It'll be either the default image, or one you set in the Theme Settings. The stock logo is logo.gif in the images directory for each color.
if (empty($settings['header_logo_url']))
echo '
<a href="http://seeknow.x10hosting.com/" class="topimg"><img src="', $settings['images_url'] . '/'. $settings['theme_main_color'], '/logo.gif" style="margin: 0px;border: 0 none;height: 89px" ', (empty($settings['show_name_near_logo'])) ? 'alt="'.$context['forum_name'].'"' : 'alt=""' ,' title="', $context['forum_name'], '" /></a>';
else echo '
<a href="http://seeknow.x10hosting.com/" title="', $context['forum_name'], '" class="topimg"><img src="', $settings['header_logo_url'], '" style="border: 0 none;vertical-align:middle;margin: 0px;" ', (empty($settings['show_name_near_logo'])) ? 'alt="'.$context['forum_name'].'"' : 'alt=""' ,' /></a>';
echo '
</td>';