MyBB Community Forums

Full Version: Focus Theme - Clean and Elegent
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
(2016-03-31, 02:13 AM)jaydee9296 Wrote: [ -> ]Is this font-awesome supported? And font awesome icon supported? Smile I like the design tho thank you ^_^

Yes it is, glad you like the design Smile
Like the template. There are a few shifts, tell me how to fix them. I use the plugin "Thank You" Version 3.9.2 Released.
Sorry for the bad english.
(2016-04-03, 08:14 AM)Ruffian Wrote: [ -> ]Like the template. There are a few shifts, tell me how to fix them. I use the plugin "Thank You" Version 3.9.2 Released.
Sorry for the bad english.

Hi Ruffian,
You need to put the Thanks buttons inside class button.
Let me know your forum url and if possible give me link to admin cp.
I will fix it.

(2016-04-03, 08:14 AM)Ruffian Wrote: [ -> ]Like the template. There are a few shifts, tell me how to fix them. I use the plugin "Thank You" Version 3.9.2 Released.
Sorry for the bad english.

For anyone having same issues using thanks plugin -
Replace showthread template with below code
<html>
<head>
<title>{$thread['subject']}</title>
{$headerinclude}
<script type="text/javascript">
// <!--
	lang.processing = '{$lang->thx_processing}';
// -->
</script>
<script type="text/javascript">
<!--
	var quickdelete_confirm = "{$lang->quickdelete_confirm}";
	var quickrestore_confirm = "{$lang->quickrestore_confirm}";
	var allowEditReason = "{$mybb->settings['alloweditreason']}";
	lang.save_changes = "{$lang->save_changes}";
	lang.cancel_edit = "{$lang->cancel_edit}";
	lang.quick_edit_update_error = "{$lang->quick_edit_update_error}";
	lang.quick_reply_post_error = "{$lang->quick_reply_post_error}";
	lang.quick_delete_error = "{$lang->quick_delete_error}";
	lang.quick_delete_success = "{$lang->quick_delete_success}";
	lang.quick_delete_thread_success = "{$lang->quick_delete_thread_success}";
	lang.quick_restore_error = "{$lang->quick_restore_error}";
	lang.quick_restore_success = "{$lang->quick_restore_success}";
	lang.editreason = "{$lang->postbit_editreason}";
// -->
</script>
<!-- jeditable (jquery) -->
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/report.js?ver=1804"></script>
<script src="{$mybb->asset_url}/jscripts/jeditable/jeditable.min.js"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/thread.js?ver=1804"></script>
</head>
<body>
	{$header}
	{$threadnotesbox}
	{$pollbox}
	<div class="float_left">
            {$multipage}<br/>
	</div>
	<div class="float_right">
		{$newreply}
	</div>
	<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder tfixed clear">
		<tr>
			<td class="thead">
				<div>
					<strong>{$thread['threadprefix']}{$thread['subject']}</strong><div class="float_right">{$ratethread}</div>
				</div>
			</td>
		</tr>
<tr><td id="posts_container">
	<div id="posts">
		{$posts}
	</div>
</td></tr>
		<tr>
			<td class="tfoot">
				{$search_thread}
				<div>
					<strong>&laquo; <a href="{$next_oldest_link}">{$lang->next_oldest}</a> | <a href="{$next_newest_link}">{$lang->next_newest}</a> &raquo;</strong>
				</div>
			</td>
		</tr>
	</table>
	<div class="float_left">
		{$multipage}
	</div>
	<div style="padding-top: 4px;" class="float_right">
		{$newreply}
	</div>
	<br class="clear" />
	{$quickreply}
	{$threadexbox}
	{$similarthreads}
	<br />
	<div class="float_left">
		<ul class="thread_tools">
			<li class="printable"><a href="printthread.php?tid={$tid}">{$lang->view_printable}</a></li>
			{$sendthread}
			<li class="subscription_{$add_remove_subscription}"><a href="usercp2.php?action={$add_remove_subscription}subscription&amp;tid={$tid}&amp;my_post_key={$mybb->post_code}">{$add_remove_subscription_text}</a></li>
			{$addpoll}
		</ul>
	</div>

	<div class="float_right" style="text-align: right;">
		{$moderationoptions}
		{$forumjump}
	</div>
	<br class="clear" />
	{$usersbrowsing}
	{$footer}
	<div id="thread_modes_popup" class="popup_menu" style="display: none;"><div class="popup_item_container"><a href="showthread.php?mode=linear&amp;tid={$tid}&amp;pid={$pid}#pid{$pid}" class="popup_item">{$lang->linear}</a></div><div class="popup_item_container"><a href="showthread.php?mode=threaded&amp;tid={$tid}&amp;pid={$pid}#pid{$pid}" class="popup_item">{$lang->threaded}</a></div></div>
	<script type="text/javascript">
	// <!--
		if(use_xmlhttprequest == "1")
		{
			$("#thread_modes").popupMenu();
		}
	// -->
	</script>
	<script type="text/javascript">
		$(".author_avatar img").error(function () {
			$(this).unbind("error").closest('.author_avatar').remove();
		});
	</script>
</body>
</html>

And open postbit template and find {$post['thxdsp_outline']} , remove it from there and replace
	<div class="post_meta" id="post_meta_{$post['pid']}">
		{$post['iplogged']}
	</div>
with
	<div class="post_meta" id="post_meta_{$post['pid']}">
		{$post['iplogged']}
	</div>
{$post['thxdsp_outline']}

Hope it helps others who have issues.
hi,wery nice theme,i use  but one problem user and me not logned forums ,my english not good pls look screen.

i click login ,login box open but I can not write user name password and in getting the incorrect entry warning.
(2016-04-04, 11:46 AM)roy Wrote: [ -> ]hi,wery nice theme,i use  but one problem user and me not logned forums ,my english not good pls look screen.

i click login ,login box open but I can not write user name password and in getting the incorrect entry warning.

Some problem with your javascript loading.
Can you let me know your forum url please ?
(2016-04-04, 12:01 PM)WallBB Wrote: [ -> ]
(2016-04-04, 11:46 AM)roy Wrote: [ -> ]hi,wery nice theme,i use  but one problem user and me not logned forums ,my english not good pls look screen.

i click login ,login box open but I can not write user name password and in getting the incorrect entry warning.

Some problem with your javascript loading.
Can you let me know your forum url please ?

Ok isend pm.
(2016-04-04, 12:32 PM)roy Wrote: [ -> ]
(2016-04-04, 12:01 PM)WallBB Wrote: [ -> ]
(2016-04-04, 11:46 AM)roy Wrote: [ -> ]hi,wery nice theme,i use  but one problem user and me not logned forums ,my english not good pls look screen.

i click login ,login box open but I can not write user name password and in getting the incorrect entry warning.

Some problem with your javascript loading.
Can you let me know your forum url please ?

Ok isend pm.

Waiting for your response roy.
wow i just uploaded this theme on test board..crisp and refreshing design! first time for me..i never used a theme before, always used default. about "upload" file..what do i do with that?

my test board
(2016-04-05, 02:38 PM)WallBB Wrote: [ -> ]
(2016-04-04, 12:32 PM)roy Wrote: [ -> ]
(2016-04-04, 12:01 PM)WallBB Wrote: [ -> ]
(2016-04-04, 11:46 AM)roy Wrote: [ -> ]hi,wery nice theme,i use  but one problem user and me not logned forums ,my english not good pls look screen.

i click login ,login box open but I can not write user name password and in getting the incorrect entry warning.

Some problem with your javascript loading.
Can you let me know your forum url please ?

Ok isend pm.

Waiting for your response roy.

Yes i reinstal theme but same, and i tested this board same problem this test board.

(2016-04-05, 04:08 PM)Butterball Wrote: [ -> ]wow i just uploaded this theme on test board..crisp and refreshing design! first time for me..i never used a theme before, always used default. about "upload" file..what do i do with that?

my test board
The problem is the fixed header.

Go to ACP > Template & Styles > Themes > Focus theme > and open global.css

Search this:

.header {

Change the z-index property value from 1000 to 10000.