MyBB Community Forums

Full Version: Some icons don't display (broken images, should be easy fix)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
You can see my forum here : http://coyfsscom.ipage.com/forum/index.php

So far there are only 3 broken images (that I've found). You can see them all on the index page. The RSS icon, home icon, and (scroll down to the "Notices" section on the right sidebar) the notices icon (note.png). You can see the error in the code by inspecting these elements.

CODE:
<img align="left" src="http://coyfsscom.ipage.com/forum/http://coyfsscom.ipage.com/forum/images/cmsbb/note.png" alt="">

That's what it looks like, when it should read like this ...
<img align="left" src="http://coyfsscom.ipage.com/forum/images/cmsbb/note.png" alt="">

So far all three of the broken icons, clearly the issue is it's doubling up on the site url part of the link. Problem is I don't know which files to edit in order to fix that. As far as I can tell it's a simple fix and I'd just need to edit in Notepad and it'd work fine.

EDIT: Also, this may help ... here is the theme I have installed. http://mods.mybb.com/view/cms-bb I think it might be a 1.6 theme, and I am using a 1.8 installation. I had to fix like 2 or three parts of code to make it compatible but that's it, everything else is functional besides the 3 broken icons.
EDIT2: Still investigating ... possibly the part I need to edit is in the myBB admin console, in templates. If so, I still haven't found "home" "RSS Feeds" or the part of the template that shows the notice icon.
Your theme is going to have more issues. It is still loading all the 1.6 javascript. 1.8 features like reports, reputation, delete and edit of posts are all going to break.

Answering the question: try looking in the navigation nav templates for the top two icons
You're right, it was in the navigation > nav template. Removed the redundant part and now the images are displaying. Smile

I'll see if I can find a different theme that's compatible, otherwise I'll just try to fix the other issues myself.