MyBB Community Forums

Full Version: How to increase size of text in forum/search 'textbox' displays ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Looked at search.php, functions_search.php, and template:search...
(<td class="trow1" rowspan="{$rowspan}">{$srchlist}</td>)
...but not much luck figuring out how to increase the small text in the search display (scrnshot attached).
Seems like key may be variable {$srchlist} ?
Found code at /search.php
else
{
	$plugins->run_hooks("search_start");
	$srchlist = make_searchable_forums("", $fid);
	$prefixselect = build_prefix_select('all', 'any', 1);
	
	$rowspan = 5;
	
	if(is_moderator())
	{
		$rowspan += 2;
		eval("\$moderator_options = \"".$templates->get("search_moderator_options")."\";");
	}
	
	$plugins->run_hooks("search_end");
	
	eval("\$search = \"".$templates->get("search")."\";");
	output_page($search);
}
But not sure how (or if possible) to add formatting i
Other places should look ?
Solution (from another forum help) too simple, guess thats why missed it Rolleyes
Just added font size at...
ACP » Themes » Default/Editing global.css: search
...and it worked !
How can things be so simple !
How can things be that simple? Because MyBB is the best of the best!

When designing websites, I always wished that I had MyBB's editor console to do work with!