MyBB Community Forums

Full Version: search result multipage
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
this confused me

on search result pages (search_results_posts and search_results_threads templates), there are multipage links above and below the results. the results above are aligned to the right, the ones below aligned to the left. it looks strange, and (partially due to the widescreen monitor) I missed the page links above the search results at first.

template code looks like this:

below:
<table width="100%" align="center" border="0">
	<tr>
		<td align="left" valign="top">{$multipage}</td>
		<td align="right" valign="top">{$inlinemod}</td>
	</tr>
</table>

above:
 		<table width="100%" align="center" border="0">
			<tr>
				<td align="right" valign="top">{$multipage}</td>
			</tr>
		</table>

changing "right" to "left" in the above code moves the pagination links to the left, where they are by default for every other page (forums, threads), and easier to spot on wide screen monitors. Wink