Is there a way so I can center my logo??
I am using 1.1 RC2 skin: Core
edit your theme's index.template.php
Ok, what do I edit?
I removed the smf logo, but I want to center my logo
http://www.fade2greys.fan-boards.org/index.php
find where ever it is calling for the logo image and add align="center" in the img tag...
Um, I can't seem to find it :(
Here is my index.template.php
Code Removed
Try this?
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="catbg" height="32" align="center">';
if (empty($settings['header_logo_url']))
echo '
<span style="font-family: Verdana, sans-serif; font-size: 140%;">', $context['forum_name'], '</span>';
else
echo '
<img src="', $settings['header_logo_url'], '" style="margin: 4px;" alt="', $context['forum_name'], '" />';
echo '
</td>
</tr>
</table>';
thanks Kindred! :D