MyBB Community Forums

Full Version: Changing the path to the subforum separator image in the forum theme?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I mean the image link to the little dot between subforums:

[Image: UUG7D.jpg]

There is a small problem with the image link in the theme I use as we mentioned before and I dunno where to change it!

Thanks very much, sorry to keep pestering!


Mike!
Do you mean to change the small images ? If so then you can Change the images by Replacing the following images from ./images/YOUR_THEME/ folder.

minioff.gif
miniofflock.gif
minion.gif
No I mean the link to those images in the forum code. They appear to be linking to /"images/darkfusion//minioff.png", which I'm told is wrong which is why they're showing the wrong image. I want to edit the path it looks in for minioff and minion and stuff, so I can remove that extra /.

So weird that it breaks it.. but it does! lol - I think it's the server!
(2011-04-29, 07:53 AM)hoppimike Wrote: [ -> ]/"images/darkfusion//minioff.png"

Your image path is incorrect, it should be like this;
images/darkfusion/minioff.png
I know! lol

What I'm asking is WHERE do I make this change in the forum code so it points to /images/darkfusion/minioff.png and not /images/darkfusion//minioff.png ?
ACP > Templates > Forumbit Templates > forumbit_depth3_statusicon
Thanks so much man Smile

I just changed it from:

<img src="{$theme['imgdir']}/{$lightbulb['folder']}.png" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="subforumicon ajax_mark_read" id="mark_read_{$forum['fid']}" />&nbsp

to

<img src="{$theme['imgdir']}{$lightbulb['folder']}.png" alt="{$lightbulb['altonoff']}" title="{$lightbulb['altonoff']}" class="subforumicon ajax_mark_read" id="mark_read_{$forum['fid']}" />&nbsp

(one single forward slash removed)


and that was it! Good stuff!

Thread solved! ^_^
Thanks.