MyBB Community Forums

Full Version: 4 easy to solve Mybb problems ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
1st Problem

Ok my 1st problem is very easy problem for someone to fix, All the thread titles in the path show up black and because i have a dark background you cant see it, The first 2 forums of the path are grey as you can see but the last 1 the title shows up black dont know why.

[Image: 1Knmr.png]

2nd Problem

So at the footer of my forum i have my forum status icons they are set to a .gif file type how do i change the file type to .PNG so i can import some transparent ones because these look bad.

I already changed the file type of the current forum icons its just these ones at the bottom the page that i need to finish with.

[Image: WfXXv.png]

3rd Problem

Ok so i don't like these middle pages i see sometimes whenever i make a search or view recent post's i get a page like the one below then it redirects me to the results page, I want to remove this page all together so it goes strait to the results.

[Image: Ik5Mk.png]

4th Problem

Ok so i noticed this in the bottom right corner of my forum, I don't really want my users or anyone to see this so how do i hide it or remove it.

[Image: 298xJ.png]

Rep thanks and ratings will be given to the people that help Smile
1. Edit the class .navigation .active in global.css. Set the color attribute to something like #fff.

2. You can change the new path in the index template.

<dl class="forum_legend smalltext">
	<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->no_new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
	<dd>{$lang->forum_locked}</dd>
</dl>

3. ACP > Configuration > Server and Optimization Options > Friendly Redirection Pages > Off

4. It's only shown to administrators, but to hide it: ACP > Configuration > Advanced Stats / Debug information > No
(2012-04-29, 01:30 PM)Nathan Malcolm Wrote: [ -> ]1. Edit the class .navigation .active in global.css. Set the color attribute to something like #fff.

2. You can change the new path in the index template.

<dl class="forum_legend smalltext">
	<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->no_new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
	<dd>{$lang->forum_locked}</dd>
</dl>

3. ACP > Configuration > Server and Optimization Options > Friendly Redirection Pages > Off

4. It's only shown to administrators, but to hide it: ACP > Configuration > Advanced Stats / Debug information > No
Well done thanks every answer perfect.

Once again i can always rely on this forum for support on my forum Smile