MyBB Community Forums

Full Version: Project 1.8.7.
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
Wow really beautiful theme Andrew. You've done an amazing work, and really awesome that you're sharing it with others.
Bravo man!
Any chance of making it responsive in the future update maybe?
(2016-06-06, 02:21 PM)shamzblueworld Wrote: [ -> ]Wow really beautiful theme Andrew. You've done an amazing work, and really awesome that you're sharing it with others.
Bravo man!
Any chance of making it responsive in the future update maybe?

Thanks, I might convert it to a responsive theme soon but it won't be free.

(2016-06-06, 09:10 AM)Wazzyl Wrote: [ -> ]
(2016-06-06, 07:37 AM)iAndrew Wrote: [ -> ]You can point registered to members and WS to your staff by using anchors

Custom pages can be added by following this tutorial
http://community.mybb.com/post-841350.html

i know to do that with the pages :Smile but if you see the word members i want to click on it and that there will be a menu below, not like a normal dropdown menu but now with the text right away below of it.
but the theme looks awesome 10+ for you ^^

Give me a couple days and i'll try add it, got a lot going on at the moment.
Thanks sir ., DONE ,
Next modification , i want to delete this ,
PS: the idea of deleting all this , i want to make this forum look like a website ,
[Image: fuosy0.jpg]
Thanks again

how can i chnage those icons,
[Image: k3b1nc.png]
i used MyForumIcons and still not changed
PS. i used another theme and the icons works .
any idea
For the stats delete {$forumstats} in Templates > Project > Index Page Templates > index_boardstats

For the forum icons edit the text "check" inside
Templates > Project > Forumbit Templates > forumbit_depth2_forum and forumbit_depth2_cat

Replace it with one of these icons http://fontawesome.io/cheatsheet/
Thanks sir
but for the forum icons i want to use my custom icons ,
so i want this theme work with |MyForumIcons | plugin
anyidea?
thanksss
(2016-06-06, 06:42 PM)feeling_bored Wrote: [ -> ]Thanks sir
but for the forum icons i want to use my custom icons ,
so i want this theme work with |MyForumIcons | plugin
anyidea?
thanksss

You can use custom icons without a plugin, scroll down for the FIcons tutorial.

http://community.mybb.com/thread-156711.html
but why the plugin (MyForumIcons) didnt work ?
there is alot of subforums also needed to be changed , so any idea how to make this plugin work ,
Best regards
(2016-06-07, 05:20 AM)feeling_bored Wrote: [ -> ]but why the plugin (MyForumIcons) didnt work ?
there is alot of subforums also needed to be changed , so any idea how to make this plugin work ,
Best regards

I'm not sure why, I've never used it.
Send me a temp admin login and i'll take a look for you shortly.

-----

I'll update the zip shortly as the stats link in footer is using the RSS icon

Or you can go in to Templates > Project > Footer Templates > Footer

Look for

<li><a title="Forum stats" href="{$mybb->settings['bburl']}/stats.php"><i style="font-size: 15px;" class="fa fa-rss fa-fw"></i></a></li>

Change it to

<li><a title="Forum stats" href="{$mybb->settings['bburl']}/stats.php"><i style="font-size: 15px;" class="fa fa-bar-chart fa-fw"></i></a></li>
when will you make it possible, IAndrew the menu?
(2016-06-12, 08:28 AM)Wazzyl Wrote: [ -> ]when will you make it possible, IAndrew the menu?


Add this to your headerinclude template
<script type="text/javascript">
$(function()
{
    $("a#toggle").click(function()
    {
        $("#memberslide").slideToggle();
        return false;
    }); 
}); 
</script>

Add this to global.css

#memberslide {
    display: none;
    color: #FFF;
    padding: 10px;
    margin-left: 20px;
    font-size: 12px;

}

Edit your memberlist link in footer to this
<li><a class="cmn-t-shake" id="toggle" href="#"><i style="color: #666666; font-size: 9px;" class="fa fa-chevron-right fa-fw"></i> &nbsp; Members</a></li>


Finally add this div below your memberlist link an edit the content inside it with your links you want.
<div id="memberslide">
  Links inside this box
</div>
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21