MyBB Community Forums

Full Version: Post Icons wrapping
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My post icons are wrapping to a new line on my new thread template. When I look in firebug I see there is a <br /> tag being inserted.

I cannot find where this happening in the template - does anyone have a solution?

See pic for issue
In functions.php at around line 1625 there's this code;

		++$listed;
		if($listed == 10)
		{
			$iconlist .= "<br />";
			$listed = 0;
		}

Change 10 to a bigger number to stop them dropping to a new line Smile

EDIT: Just deleting <br /> would work too.
core file edit hmm - or just not more than 10 posticons. I think including the no icon - so 9 post icons.