Thread Rating:
  • 10 Vote(s) - 3.4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[For 1.8] MyIPB theme
#29
(2016-06-23, 03:04 PM)MikeInToshx Wrote: There is some missing css for pagination I think.
Tried it myself but I struggle when it comes to those long css names.



First image I selected it so U can see what is missing.

It's when having more than 1 page in search results. the font color is white.
Can't just change the color for pagination because then the pagination in postbit would be changed too.

I didn't even touch the search template xD

This is the fix:

1- search_results_threads template

Replace all the code of the template with this new one:

<html>
		<head>
		<title>{$mybb->settings['bbname']} - {$lang->search_results}</title>
		{$headerinclude}
		</head>
		<body id="search">
		{$header}

		<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
			<tr>
				<td colspan="8" class="thead">
					<strong>{$lang->search_results}</strong>
				</td>
			</tr>
			<tr>
				<td class="lightblue" colspan="8">
					<span style="float: left;">{$multipage}</span>
				</td>
			</tr>
			
			<tr>
				<td class="tcat" align="center" colspan="3" width="56%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=subject&amp;order=asc">{$lang->thread}</a> {$orderarrow['subject']}</strong> / <strong><a href="{$sorturl}&amp;sortby=starter&amp;order=asc">{$lang->author}</a> {$orderarrow['starter']}</strong></span></td>
				<td class="tcat" align="center" width="14%"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=forum&amp;order=asc">{$lang->forum}</a> {$orderarrow['forum']}</strong></span></td>
				<td class="tcat" align="center"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=replies&amp;order=desc">{$lang->replies}</a> {$orderarrow['replies']}</strong></span></td>
				<td class="tcat" align="center"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=views&amp;order=desc">{$lang->views}</a> {$orderarrow['views']}</strong></span></td>
				<td class="tcat" align="center" width="200"><span class="smalltext"><strong><a href="{$sorturl}&amp;sortby=lastpost&amp;order=desc">{$lang->lastpost}</a> {$orderarrow['lastpost']}</strong></span></td>
				{$inlinemodcol}
			</tr>
			{$selectall}
			{$results}
		</table>
		{$inline_edit_js}
		<table width="100%" align="center" border="0">
			<tr>
				<td class="lightblue" colspan="8">
					<span style="float: left;">{$multipage}</span>
					<span style="float: right;">{$inlinemod}</span>
				</td>
			</tr>
		</table>
		{$footer}
		</body>
		</html>

2- search_results_threads_inlinemoderation template

Replace all the code of the template with this new one:

<script type="text/javascript" src="{$mybb->asset_url}/jscripts/inline_moderation.js?ver=1807"></script>
		<form action="moderation.php" method="post" style="padding: 5px 8px;">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<input type="hidden" name="fid" value="0" />
<input type="hidden" name="searchid" value="{$sid}" />
<input type="hidden" name="modtype" value="inlinethread" />
<span class="smalltext" style="color: #fafafa;"><strong>{$lang->inline_thread_moderation}</strong></span>
<select name="action">
	<optgroup label="{$lang->standard_mod_tools}">
		<option value="multiclosethreads">{$lang->close_threads}</option>
		<option value="multiopenthreads">{$lang->open_threads}</option>
		<option value="multistickthreads">{$lang->stick_threads}</option>
		<option value="multiunstickthreads">{$lang->unstick_threads}</option>
		<option value="multisoftdeletethreads">{$lang->soft_delete_threads}</option>
		<option value="multirestorethreads">{$lang->restore_threads}</option>
		<option value="multideletethreads">{$lang->delete_threads}</option>
		<option value="multimovethreads">{$lang->move_threads}</option>
		<option value="multiapprovethreads">{$lang->approve_threads}</option>
		<option value="multiunapprovethreads">{$lang->unapprove_threads}</option>
	</optgroup>
	{$customthreadtools}
</select>
<input type="submit" class="button" name="go" value="{$lang->inline_go} ({$inlinecount})" id="inline_go" />&nbsp;
<input type="button" onclick="javascript:inlineModeration.clearChecked();" value="{$lang->clear}" class="button" />
<input type="hidden" name="url" value="{$return_url}" />
<input type="hidden" name="inlinetype" value="search" />
</form>
<script type="text/javascript">
<!--
	var go_text = "{$lang->inline_go}";
	var all_text = "{$threadcount}";
	var inlineType = "search";
	var inlineId = '{$sid}';
// -->
</script>

That fix all ^^.
I don't give support on PM.
Reply


Messages In This Thread
MyIPB theme - by eNvy - 2016-06-05, 09:40 PM
RE: MyIPB Theme - by Allan - 2016-06-08, 01:18 AM
RE: MyIPB Theme - by MikeInToshx - 2016-06-08, 01:32 AM
RE: MyIPB Theme - by meetdilip - 2016-06-08, 03:14 AM
RE: MyIPB Theme - by WallBB - 2016-06-08, 04:50 AM
RE: MyIPB Theme - by THC - 2016-06-08, 05:18 AM
RE: MyIPB Theme - by IceEyes - 2016-06-08, 01:03 PM
RE: MyIPB Theme - by MikeInToshx - 2016-06-08, 01:43 PM
RE: MyIPB Theme - by eNvy - 2016-06-08, 04:12 PM
RE: MyIPB theme - by MikeInToshx - 2016-06-08, 04:22 PM
RE: MyIPB theme - by eNvy - 2016-06-08, 08:22 PM
RE: MyIPB theme - by MikeInToshx - 2016-06-08, 08:41 PM
RE: MyIPB theme - by eNvy - 2016-06-08, 09:32 PM
RE: MyIPB theme - by Livewire - 2016-06-08, 10:15 PM
RE: MyIPB theme - by eNvy - 2016-06-08, 10:59 PM
RE: MyIPB theme - by MikeInToshx - 2016-06-15, 12:24 AM
RE: MyIPB theme - by MikeInToshx - 2016-06-16, 03:19 AM
RE: MyIPB theme - by Camdennn - 2016-08-17, 05:38 PM
RE: MyIPB theme - by MikeInToshx - 2016-08-17, 05:45 PM
RE: MyIPB theme - by eNvy - 2016-06-16, 08:29 AM
RE: MyIPB theme - by MikeInToshx - 2016-06-16, 05:06 PM
RE: MyIPB theme - by theeQuz - 2016-06-18, 05:22 PM
RE: MyIPB theme - by Starnova - 2016-06-18, 07:04 PM
RE: MyIPB theme - by MikeInToshx - 2016-06-21, 12:24 AM
RE: MyIPB theme - by eNvy - 2016-06-21, 01:03 AM
RE: MyIPB theme - by KaruleanX - 2016-06-21, 01:05 AM
RE: MyIPB theme - by MikeInToshx - 2016-06-21, 01:21 AM
RE: MyIPB theme - by eNvy - 2016-06-21, 01:58 AM
RE: MyIPB theme - by jairisonGS - 2016-06-21, 03:12 AM
RE: MyIPB theme - by MikeInToshx - 2016-06-23, 03:04 PM
RE: MyIPB theme - by eNvy - 2016-06-23, 08:00 PM
RE: MyIPB theme - by MikeInToshx - 2016-06-23, 08:10 PM
RE: MyIPB theme - by eNvy - 2016-06-23, 08:29 PM
RE: MyIPB theme - by MikeInToshx - 2016-06-23, 08:54 PM
RE: MyIPB theme - by eNvy - 2016-06-23, 10:28 PM
RE: MyIPB theme - by MikeInToshx - 2016-06-23, 10:52 PM
RE: MyIPB theme - by eNvy - 2016-06-23, 11:08 PM
RE: MyIPB theme - by MikeInToshx - 2016-06-23, 11:11 PM
RE: MyIPB theme - by MikeInToshx - 2016-06-29, 02:18 AM
RE: MyIPB theme - by .::KP::. - 2016-08-17, 12:06 PM
RE: MyIPB theme - by MikeInToshx - 2016-08-22, 08:31 PM
RE: MyIPB theme - by iAndrew - 2016-08-22, 08:49 PM
RE: MyIPB theme - by MikeInToshx - 2016-08-22, 09:02 PM
RE: MyIPB theme - by iAndrew - 2016-08-22, 09:38 PM
RE: MyIPB theme - by eNvy - 2016-08-22, 09:43 PM
RE: MyIPB theme - by MikeInToshx - 2016-08-22, 09:47 PM
RE: MyIPB theme - by eNvy - 2016-08-22, 09:51 PM
RE: MyIPB theme - by MikeInToshx - 2016-08-22, 09:57 PM
RE: MyIPB theme - by eNvy - 2016-08-23, 12:50 AM
RE: MyIPB theme - by MikeInToshx - 2016-08-23, 01:39 AM
RE: MyIPB theme - by DrXotick - 2016-08-23, 02:38 PM
RE: MyIPB theme - by MikeInToshx - 2016-08-23, 02:47 PM
RE: MyIPB theme - by eNvy - 2016-08-23, 04:49 PM
RE: MyIPB theme - by MikeInToshx - 2016-08-23, 05:03 PM
RE: MyIPB theme - by Freakout14 - 2016-08-23, 05:01 PM
RE: MyIPB theme - by eNvy - 2016-08-23, 05:31 PM
RE: MyIPB theme - by Kingisback - 2016-08-24, 11:53 PM
RE: MyIPB theme - by eNvy - 2016-08-25, 03:55 AM
RE: MyIPB theme - by MikeInToshx - 2016-08-29, 11:50 AM
RE: MyIPB theme - by Ashley1 - 2016-08-29, 12:29 PM
RE: MyIPB theme - by MikeInToshx - 2016-08-29, 03:57 PM
RE: MyIPB theme - by zang - 2016-08-29, 03:48 PM
RE: MyIPB theme - by eNvy - 2016-08-29, 06:54 PM
RE: MyIPB theme - by MikeInToshx - 2016-08-29, 07:08 PM
RE: MyIPB theme - by eNvy - 2016-08-29, 09:05 PM
RE: MyIPB theme - by MikeInToshx - 2016-08-29, 09:12 PM
RE: MyIPB theme - by Ghoul - 2016-08-29, 11:07 PM
RE: MyIPB theme - by eNvy - 2016-08-30, 01:57 PM
RE: MyIPB theme - by Ghoul - 2016-08-30, 11:44 PM
RE: MyIPB theme - by eNvy - 2016-10-26, 02:41 PM
RE: MyIPB theme - by MikeInToshx - 2016-10-26, 02:49 PM
RE: MyIPB theme - by eNvy - 2016-10-26, 06:29 PM
RE: MyIPB theme - by MikeInToshx - 2016-11-12, 07:21 PM
RE: MyIPB theme - by AlexanderPep - 2016-11-13, 08:19 PM
RE: MyIPB theme - by xatpaul - 2016-11-20, 05:05 PM
RE: MyIPB theme - by eNvy - 2016-11-21, 04:26 AM
RE: MyIPB theme - by xatpaul - 2016-11-21, 08:56 AM
RE: MyIPB theme - by d3xt3r - 2016-11-21, 04:28 PM
RE: MyIPB theme - by eNvy - 2016-11-21, 05:00 PM
RE: MyIPB theme - by d3xt3r - 2016-11-21, 05:41 PM
RE: MyIPB theme - by eNvy - 2016-11-21, 06:46 PM
RE: MyIPB theme - by d3xt3r - 2016-11-23, 10:25 AM
RE: MyIPB theme - by eNvy - 2016-11-23, 11:21 AM
RE: MyIPB theme - by d3xt3r - 2016-11-23, 11:31 AM
RE: MyIPB theme - by eNvy - 2016-11-23, 03:40 PM
RE: MyIPB theme - by AlexanderPep - 2016-12-01, 12:12 AM
RE: MyIPB theme - by Sinnocent - 2016-12-01, 08:06 PM
RE: MyIPB theme - by eNvy - 2016-12-01, 11:55 PM
RE: MyIPB theme - by Sinnocent - 2016-12-02, 11:00 AM
RE: MyIPB theme - by AlexanderPep - 2016-12-02, 11:52 AM
RE: MyIPB theme - by eNvy - 2016-12-02, 06:26 PM
RE: MyIPB theme - by valarr - 2016-12-05, 08:00 PM
RE: MyIPB theme - by AlexanderPep - 2016-12-21, 05:23 PM
RE: MyIPB theme - by eNvy - 2017-02-17, 09:24 AM
RE: MyIPB theme - by AlexanderPep - 2017-02-20, 12:08 AM
RE: MyIPB theme - by eNvy - 2017-02-20, 12:17 AM
RE: MyIPB theme - by Sixthen - 2017-05-22, 07:18 AM
RE: MyIPB theme - by .m. - 2017-05-22, 07:39 AM
RE: MyIPB theme - by Sixthen - 2017-05-22, 03:30 PM
RE: MyIPB theme - by manshi - 2017-06-14, 08:19 PM
RE: MyIPB theme - by Sludgy - 2017-06-15, 05:00 PM
RE: MyIPB theme - by kevjoe - 2017-06-15, 08:16 PM
RE: MyIPB theme - by Avex - 2017-08-13, 11:19 AM
RE: MyIPB theme - by meetdilip - 2017-08-13, 11:24 AM
RE: MyIPB theme - by broatcast - 2017-08-13, 09:32 PM
RE: MyIPB theme - by Avex - 2017-08-15, 01:28 PM
RE: MyIPB theme - by jeason - 2017-11-13, 08:16 PM
RE: MyIPB theme - by eNvy - 2018-01-10, 02:18 PM
RE: MyIPB theme - by eNvy - 2019-01-23, 05:39 PM
RE: MyIPB theme - by DevLife - 2019-01-26, 01:19 AM
RE: MyIPB theme - by eNvy - 2019-01-26, 01:37 AM
RE: MyIPB theme - by DevLife - 2019-01-26, 03:31 PM
RE: MyIPB theme - by eNvy - 2019-01-26, 08:20 PM
RE: MyIPB theme - by DevLife - 2019-01-28, 11:17 PM
RE: MyIPB theme - by Chinezul - 2019-01-31, 07:13 PM
RE: MyIPB theme - by eNvy - 2019-02-06, 09:28 PM
RE: MyIPB theme - by DevLife - 2019-02-08, 12:59 AM
RE: MyIPB theme - by eNvy - 2019-02-08, 02:28 AM
RE: MyIPB theme - by DevLife - 2019-05-27, 07:28 PM
RE: MyIPB theme - by Abraham54 - 2019-12-05, 10:31 AM
RE: MyIPB theme - by eNvy - 2020-02-19, 12:36 AM
RE: MyIPB theme - by Whiteneo - 2020-02-19, 02:08 AM
RE: MyIPB theme - by OakleY - 2020-02-19, 11:50 AM
RE: MyIPB theme - by Darth Apple - 2020-02-19, 01:34 PM
RE: MyIPB theme - by eNvy - 2020-02-20, 04:56 PM
RE: MyIPB theme - by OakleY - 2020-02-20, 07:12 PM
RE: MyIPB theme - by sandokhane - 2020-04-02, 02:26 AM
RE: MyIPB theme - by DevLife - 2020-05-08, 09:57 PM
RE: MyIPB theme - by Pikeman - 2020-05-09, 12:47 PM
RE: MyIPB theme - by Allan - 2020-05-26, 01:14 AM
RE: MyIPB theme - by bosslady - 2020-05-26, 03:55 PM
RE: MyIPB theme - by DevLife - 2020-08-19, 07:22 PM
RE: MyIPB theme - by eNvy - 2021-11-13, 05:31 PM
RE: MyIPB theme - by Wazzyl - 2021-11-28, 11:45 PM
RE: MyIPB theme - by Emre - 2021-11-18, 10:39 PM
RE: MyIPB theme - by LM|| RCMP* - 2022-01-15, 02:06 AM
RE: MyIPB theme - by lucy45 - 2022-03-17, 10:51 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)