MyBB Community Forums

Full Version: Weird Image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://i51.tinypic.com/opu2d4.jpg


Looks like that on my friends computer, but the image isnt there on mine.
What exactly is the problem there?
Theres a broken picture next to rules.
Paste the contents of your header template.
This?

<!-- end: header_welcomeblock_member -->
</div>
<br class="clear" />
<ul class="menu clearfix">
<li><a href="http://www.thefootballbase.co.uk/forum/index.php">The Football Base</a></li>
<li><a href="http://www.thefootballbase.co.uk/forum/memberlist.php" class="memberlist">Member List</a></li>
<li><a href="http://www.thefootballbase.co.uk/forum/calendar.php" class="calendar">Calendar</a></li>

<li><a href="http://www.thefootballbase.co.uk/forum/misc.php?action=help" class="help">Help</a></li>
<li class="rules_link"><a href="http://www.thefootballbase.co.uk/forum/misc.php?action=rules"><img src="images/glowing/toplinks/rules.gif" border="0" alt="" />Rules</a></li>
</ul>
No, you copied that from the source code of the page. You need to go into the templates directly and paste its contents here.

Basically, you just need to remove the extra image that's in the Rules link.
<li><a href="{$mybb->settings['bburl']}/index.php">{$mybb->settings['bbname']}</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php" class="memberlist">{$lang->toplinks_memberlist}</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php" class="calendar">{$lang->toplinks_calendar}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
<li class="rules_link"><a href="{$mybb->settings['bburl']}/misc.php?action=rules"><img src="{$theme['imgdir']}/toplinks/rules.gif" border="0" alt="" />Rules</a></li>
Make sure the image has the same name as what you put in the template, Also make sure its the right format (.png .gif etc..). Oh and in the right directory!
Im using the Rules mod.
Replace it with this:

<li><a href="{$mybb->settings['bburl']}/index.php">{$mybb->settings['bbname']}</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php" class="memberlist">{$lang->toplinks_memberlist}</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php" class="calendar">{$lang->toplinks_calendar}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" class="help">{$lang->toplinks_help}</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=rules">Rules</a></li>