MyBB Community Forums

Full Version: Flatty 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 22 23 24
There is a "classic" layout which is found in the setting and provides a vertical profile layout - members can choose the option, and you can make it the default choice in your backend

I've also just noticed that attachment bug on my forum. I'm going to fix it today and I will let you know

No easy option to make the forum darker - if you want to replace the blue, simply find and replace all #2c82c9 in global.css with your prefered colour. One the most useful tools for me is the chrome "inspect" function where you can easily find the element location and play around with the settings on a live pallet before actually implementing.
(2017-10-06, 03:05 PM)Zachary Murphy Wrote: [ -> ]How can I change, the flatty forum thread icon from [Image: hWaebBv.png] to https://imgur.com/mFqM6vG

and then have my icon I want to change the icon to that but with a green X in the sign to show that there are new posts?


EDIT 4:29 PM | 10/6/2017 

    I made the forum icons work, I just need help setting up the change to when there is a new post in that forum it changes the yellow X image to a different custom image. [Image: MzciZrd.png]


How can I fix the Log out and the Log in issue, where it doesn't show the Log out or Log in button, even when I log out of the admin console I get this issue:

[Image: G5kwnQJ.png]

Could you please tell me how you did that? I actually got the same problem and need some help.
Hey, cool theme Big Grin But how can I change the header image? Thanks.
Hi Guys

Once again, great theme  Big Grin

I'm just refining it to my needs, and have a couple of questions...

  1. Is there any way to scroll teh "Navbar" down with screen when scrolling like the header bars
  2. What code do I need to add to show the current thread name in the header bar (so it is always visible when scrolling down - not so important if I can achieve #1.)
  3. I would like to include the "Mark All Forums Read" in the header, but when I move the following string (which works in the footer) to the hear, it comes back with an error
    {$mybb->settings['bburl']}/misc.php?action=markread{$post_code_string}
Thanks for any help  Smile
Hello,

I've been wanting to use Flatty as my MyBB theme on my forum but I've always been having issues like these.
Screenshots below:
[Image: Capture.png]

I also have more issues than just this one in the User CP, I also have some issues with the same thing happening in threads where the like button is the same.


Do you guys know how to fix this perhaps?

Any help would be appreciated. Thanks.
Go to "myalerts_usercp_nav" template and replace its contents with the following

<tr>
    <td class="tcat tcat_menu tcat_collapse">
        <div class="expcolimage">
            <img src="{$theme['imgdir']}/collapse{$collapsedimg['usercpalerts']}.png" id="usercpalerts_img"
                 class="expander" alt="[-]" title="[-]"/>
        </div>
        <div>
            <span class="smalltext">
                <strong>{$lang->myalerts_usercp_nav}</strong>
            </span>
        </div>
    </td>
</tr>
<tbody style="{$collapsed['usercpalerts_e']}" id="usercpalerts_e">
<tr>
    <td class="trow1 smalltext">
        <a href="alerts.php" class="usercp_nav_item usercp_nav_myalerts">
            <i class="fa fa-bell-o fa_xtra"></i>
            {$lang->myalerts_usercp_nav_alerts}
        </a>
    </td>
</tr>
<tr>
    <td class="trow1 smalltext">
        <a href="alerts.php?action=settings" class="usercp_nav_item usercp_nav_options">
            <i class="fa fa-cog fa_xtra"></i>
            {$lang->myalerts_usercp_nav_settings}
        </a>
    </td>
</tr>
<tr>
    <td class="trow1 smalltext">
        <a href="alerts.php?action=delete_read&amp;my_post_key={$mybb->post_code}"
           onclick="return confirm('{$lang->myalerts_delete_read_confirm}')"
           class="usercp_nav_item usercp_nav_myalerts_delete_read">
            <i class="fa fa-trash-o fa_xtra orange"></i>
            {$lang->myalerts_usercp_nav_delete_read}
        </a>
    </td>
</tr>
<tr>
    <td class="trow1 smalltext">
        <a href="alerts.php?action=delete_all&amp;my_post_key={$mybb->post_code}"
           onclick="return confirm('{$lang->myalerts_delete_all_confirm}')"
           class="usercp_nav_item usercp_nav_myalerts_delete_all">
            <i class="fa fa-trash-o fa_xtra orange"></i>
            {$lang->myalerts_usercp_nav_delete_all}
        </a>
    </td>
</tr>
</tbody> 
Thanks but I still have the same issue with plugins like "Favorite Threads", "Attachment Log" and much more.
(2017-11-07, 03:43 AM)TheEpicCooldeal Wrote: [ -> ]Thanks but I still have the same issue with plugins like "Favorite Threads", "Attachment Log" and much more.

There is no one issue effecting the theme, so you will have will have to go through each template and carry out tweaks like what you see in my previous post and use Font awesome to find a suitable icon (see here)

If you're not too bothered about the icons, you could just remove them from your image file, and they will just appear as text.
Does someone know how I can change the forum icons in flatty theme?
(2017-11-07, 10:43 AM)andy.zhang Wrote: [ -> ]Does someone know how I can change the forum icons in flatty theme?

Go to <forumbit_depth2_forum> template and find <i class="fa fa-comments-o">

"fa-comments-o" is that speech bubble, and if you can find a Font Awesome Icon that you like (see here) simply replace that "fa-comments-o" with the new Icon

It should be easy to use an image, but that is where my minimal expertise ends!

(2017-11-05, 11:08 PM)NotAdmin Wrote: [ -> ]Hi Guys

Once again, great theme  Big Grin

I'm just refining it to my needs, and have a couple of questions...

  1. Is there any way to scroll teh "Navbar" down with screen when scrolling like the header bars
  2. What code do I need to add to show the current thread name in the header bar (so it is always visible when scrolling down - not so important if I can achieve #1.)
  3. I would like to include the "Mark All Forums Read" in the header, but when I move the following string (which works in the footer) to the hear, it comes back with an error
    {$mybb->settings['bburl']}/misc.php?action=markread{$post_code_string}
Thanks for any help  Smile

I'm answering others enquiries and my own questions are getting lost  Toungue

A shameless bump - any help guys, please?
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24