MyBB Community Forums

Full Version: How can I make a row of 15 posts icons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

How can I make a row of 15 post icons per row instead of 10?

Thanks!
In functions.php at around line 1625 there's this code;

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

Change 10 to 15
thanks so much!