MyBB Community Forums

Full Version: Emerald - Clean, Multicolor & Responsive Theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Hello everyone Big Grin

Emerald is a clean & responsive theme for MyBB 1.8 which can be used freely by all users.
Dark version : https://community.mybb.com/mods.php?acti...w&pid=1301

Current features are :
  • Clean & Modern
  • Fully Responsive & Retina Ready
  • Multicolor 
  • CSS Animations
  • Google Fonts
  • Font Icons
  • Social Icons
  • No MyBB Images
  • Custom Postbit
  • Removable/Customizable Sidebars
  • Fixed & Beautiful Header
  • Free Updates
  • Free Support
  • And more !

Demo : https://developement.design/demo/emerald...me&style=3
Github : https://github.com/DD-GitH/emerald-theme-mybb/
Download : https://community.mybb.com/mods.php?acti...w&pid=1037
For issues : https://developement.design/forum/forumd...php?fid=12

[Image: 68747470733a2f2f636f6d6d756e6974792e6d79...362e706e67]

Last update on 04/10/2022 (v2.2)
Website : https://developement.design/
Email : [email protected] (for business only)

Don't forget to leave a star if you like the theme Big Grin 
To change the default color of the theme : https://developement.design/forum/Thread...heme-color

Price of copyright removal : 15$ (https://developement.design/forum/showth...n=lastpost)

Best Regards,
D&D Team
EDIT : You can post also support issues here in this thread, but it's better in Github Wink
I absolutely love the theme. Beautifully designed and really well built. My question is profile links are not working on threads. Do you know why that is happening?

A few other questions about the theme. How do I get the most recent posts to show in the forum index and after deleting the sidebar, how do I make the forum width 100%?

Second thing I would like to do is have all the content on one side. I noticed that when I type a long post that part of the content floats under the user profile. How do I get that all on the right hand side
@AmazOuz , there is a toggle icon as well with Font Awesome

<i class="fa fa-toggle-on" aria-hidden="true"></i>
@Virtuoso revert index to original and use a plugin for the sidebox

and delete this in the index
 <dl class="forum_legend smalltext">
 <dt><span class="forum_status forum_on" title="{$lang->new_posts}"></span></dt>
 <dd>{$lang->new_posts}</dd>
 <dt><span class="forum_status forum_off" title="{$lang->no_new_posts}"></span></dt>
 <dd>{$lang->no_new_posts}</dd>
 <dt><span class="forum_status forum_offlock" title="{$lang->forum_locked}"></span></dt>
 <dd>{$lang->forum_locked}</dd>
 <dt><span class="forum_status forum_offlink" title="{$lang->forum_redirect}"></span></dt>
 <dd>{$lang->forum_redirect}</dd>
</dl>
I can't find that in the index template. Here's what my index template looks like

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
<div class="forum">{$forums}{$boardstats}</div>
<div class="side" style="display:none;">

<table style="" class="tborder" border="0" cellpadding="{$theme['tablespace']}" cellspacing="{$theme['borderwidth']}">
<tbody><tr>
   <td style="font-weight: bold;" class="thead">
  <i class="fa fa-bullhorn"></i> Announcements 
   </td>
</tr>

<tr>
   <td class="trow2" style="padding:11px">
      <a href="#">This is an example !</a>
   </td>
</tr>
</tbody></table>

 <table style="margin-top: 10px; margin-bottom: 10px;" class="tborder" border="0" cellpadding="{$theme['tablespace']}" cellspacing="{$theme['borderwidth']}">

<tbody><tr>
   <td style="font-weight: bold;" class="thead">
  <i class="fa fa-bar-chart-o"></i> Statistics
   </td>
</tr>

<tr>
   <td style="padding: 12px;" class="trow2">
  <span style="float:left">Members :</span> <span style="float:right">{$stats['numusers']}</span>
   </td>
</tr>
   
<tr>
   <td style="padding: 12px;" class="trow2">
  <span style="float:left">Posts :</span> <span style="float:right">{$stats['numposts']} </span>
   </td>
</tr>
   
<tr>
   <td style="padding: 12px;" class="trow2">
  <span style="float:left">Threads :</span> <span style="float:right">{$stats['numthreads']}</span>
   </td>
</tr>
<tr style="">
   <td style="padding: 12px;" class="trow2">
  <span style="float:left">Newest Member :</span> <span style="float:right"><a href="#">{$newestmember}</a></span>
   </td>
</tr>
</tbody></table>
</div>
<br class="clear" />
{$footer}
</body>
</html>

Also what plugin should I use for the sidebox?
(2017-09-19, 01:31 PM)Virtuoso Wrote: [ -> ]I can't find that in the index template. Here's what my index template looks like

You need to revert the template back to default and then delete that code inbetwee posted.
Templates > Index Page Templates > Click options on the right on Index and revert to original

Or just copy/paste this into your index template


<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
	lang.no_new_posts = "{$lang->no_new_posts}";
	lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$forums}
{$boardstats}

<br class="clear" />
{$footer}
</body>
</html>

first revert the index template and then remove this

<dl class="forum_legend smalltext">
<dt><span class="forum_status forum_on" title="{$lang->new_posts}"></span></dt>
<dd>{$lang->new_posts}</dd>
<dt><span class="forum_status forum_off" title="{$lang->no_new_posts}"></span></dt>
<dd>{$lang->no_new_posts}</dd>
<dt><span class="forum_status forum_offlock" title="{$lang->forum_locked}"></span></dt>
<dd>{$lang->forum_locked}</dd>
<dt><span class="forum_status forum_offlink" title="{$lang->forum_redirect}"></span></dt>
<dd>{$lang->forum_redirect}</dd>
</dl>

plugin find it here https://community.mybb.com/mods.php?acti...ad&pid=819
Thank you guys. Now it looks like this. I'm really trying to figure out how to have the most recent posts and the thread count on the thread

Also for some reason the ASB plugin doesn't work. I installed it correctly and it doesn't show up on the plugin page

I moved my forum to a live server. If anyone is able to help me I will give them admin access. Thanks!
(2017-09-19, 01:48 PM)Virtuoso Wrote: [ -> ]Thank you guys. Now it looks like this. I'm really trying to figure out how to have the most recent posts and the thread count on the thread

Also for some reason the ASB plugin doesn't work. I installed it correctly and it doesn't show up on the plugin page

I moved my forum to a live server. If anyone is able to help me I will give them admin access. Thanks!

Hi Big Grin
This is just a theme it doesn't include recent posts plugin. For ASB please contact support of its owner, i even don't know what it is.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21