ModernBB: A new forum version for Forumotion forums
+22
techmandan
Susanne Lindskog
neos
BlackScorpion
NewFoundStories
Manata
ranbac_hd89
tillytiger99
YoshiGM
Jucarese
Gwim_Weaper
Charisma Clash
MattiaDes
petrosnik
Paulostge
SLGray
Ange Tuteur
SarkZKalie
DVAted
Ape
Mimóza
The Godfather
26 posters
Page 1 of 4
Page 1 of 4 • 1, 2, 3, 4
ModernBB: A new forum version for Forumotion forums
Dear users,
In order to improve our services, Forumotion is pleased to offer you a new forums version to ensure a better user experience. This new version, which we have called ModernBB, is added to the 4 Forumotion forums versions already available (phpBB2, phpBB3, punBB and inVision) to constitute the 5th version available for your forums
It's accessible from your administration panel > Display > Skins > Choose a theme > Version > ModernBB.
ModernBB brings to your forums a more refined and aerial design with new innovations : New design, full-width banner, sticky navigation bar, retractable sections, ... Etc.
Another novelty will also be available exclusively on this template. It's the possibility for the admin to choose the forum version which will appears on mobile browsers (Web version of the forum or it's mobile version).
This choice is available for forums who defined ModernBB as the base version of the forum in the administration panel > Display > Templates > Mobile Version> Mobile configuration :
Without saying too much, I let you discover all the potential that ModernBB offers to your forums by yourself ...
Hopefully this new Forumotion forums version will bring you full satisfaction!
The Forumotion team
In order to improve our services, Forumotion is pleased to offer you a new forums version to ensure a better user experience. This new version, which we have called ModernBB, is added to the 4 Forumotion forums versions already available (phpBB2, phpBB3, punBB and inVision) to constitute the 5th version available for your forums
It's accessible from your administration panel > Display > Skins > Choose a theme > Version > ModernBB.
ModernBB brings to your forums a more refined and aerial design with new innovations : New design, full-width banner, sticky navigation bar, retractable sections, ... Etc.
Another novelty will also be available exclusively on this template. It's the possibility for the admin to choose the forum version which will appears on mobile browsers (Web version of the forum or it's mobile version).
This choice is available for forums who defined ModernBB as the base version of the forum in the administration panel > Display > Templates > Mobile Version> Mobile configuration :
Without saying too much, I let you discover all the potential that ModernBB offers to your forums by yourself ...
Hopefully this new Forumotion forums version will bring you full satisfaction!
The Forumotion team
Notes:
- Note that the ModernBB version is still in BETA phase. Although it has already passed our tests, it's not a definitive production version. It may contain some visual or functional bugs. So please help us to highlight any residual bugs.
- Note that the ModernBB version does not yet give you access to it's templates edition. Only mobile version templates remains accessible at the moment. This will allow us to optimize and correct the possible problems faster.
Last edited by The Godfather on Wed 8 Mar - 8:18; edited 2 times in total
The Godfather- Administrator
- Posts : 5343
Reputation : 846
Re: ModernBB: A new forum version for Forumotion forums
Woah! You got me curious!
Edit: Looking really sleek at first glance! Nice job, thanks!
Edit: Looking really sleek at first glance! Nice job, thanks!
Re: ModernBB: A new forum version for Forumotion forums
Nice work looking over it now and trying to make a new skin for it but one thing i Don't like is where you out the login and log out nav button it should be with the rest of them.
Also you have a online icons on your profiles but im sure its not that hard t add the offline icon also.
Also you have a online icons on your profiles but im sure its not that hard t add the offline icon also.
Re: ModernBB: A new forum version for Forumotion forums
@APE It's the width of your forum logo that is the cause of the problem. It's too wide and pushes the menu on 2 lines. This is not a bug
The Godfather- Administrator
- Posts : 5343
Reputation : 846
Re: ModernBB: A new forum version for Forumotion forums
This sounds exciting
However ...
I normally have about 60-70 header banners in random rotation on top of my forum, and they're all 900x200. Is this new setup gonna make me give them all up? and if so, what is the appropriate size of the top banner?
However ...
The Godfather wrote:@APE It's the width of your forum logo that is the cause of the problem. It's too wide and pushes the menu on 2 lines. This is not a bug
I normally have about 60-70 header banners in random rotation on top of my forum, and they're all 900x200. Is this new setup gonna make me give them all up? and if so, what is the appropriate size of the top banner?
Re: ModernBB: A new forum version for Forumotion forums
@DVAted i believe CSS can help you to solve this issue :v or my favourite part - template modifying
Re: ModernBB: A new forum version for Forumotion forums
If you stay with the ones you have now and use this new system then you will have to make them smaller to fit the new system but remember this is in bata mode and also you don't have to change over it's just a new system we have made to bring your more choiceDVAted wrote:This sounds exciting
However ...The Godfather wrote:@APE It's the width of your forum logo that is the cause of the problem. It's too wide and pushes the menu on 2 lines. This is not a bug
I normally have about 60-70 header banners in random rotation on top of my forum, and they're all 900x200. Is this new setup gonna make me give them all up? and if so, what is the appropriate size of the top banner?
Re: ModernBB: A new forum version for Forumotion forums
This is quite a pleasant surprise ! I've been taking a look over the theme so far and it's lookin' good. Is it alright if I post any suggestions I have or bugs I find to this topic ?
1. Width limit
This CSS snippet will restrict the forum banner to a certain size. ( 200px by default )
2. Force banner onto its own line
If you don't want to restrict your banner width, the best solution would be to force it onto its own line. Use the snippet below to achieve this.
Change "left" to "center" or "right" in
to change the alignment of the banner. Note : I'm still forcing a 100% banner width limit, so your banner doesn't overflow the forum. I'd recommend keeping the banner height around 100 to 200px though, as it seems the header has a fixed height, in which case adding
might be a good idea.
That is indeed due to your banner size, however, it can be corrected with CSS. I'll post a few solutions below.APE wrote:Nice work looking over it now and trying to make a new skin for it but one thing i Don't like is where you out the login and log out nav button it should be with the rest of them.
Also you have a online icons on your profiles but im sure its not that hard t add the offline icon also.
1. Width limit
This CSS snippet will restrict the forum banner to a certain size. ( 200px by default )
- Code:
#logo img {
max-width:200px;
}
2. Force banner onto its own line
If you don't want to restrict your banner width, the best solution would be to force it onto its own line. Use the snippet below to achieve this.
- Code:
#logo {
float:none;
display:block;
text-align:left;
}
#logo img {
max-width:100%;
}
Change "left" to "center" or "right" in
|
|
Re: ModernBB: A new forum version for Forumotion forums
oooh okay thank you everybody
from the ACP previews, I could only surmise that it's optimized for mobile viewing
because it basically tightens everything, and makes most parts taller
but hey, variety and freedom of choice is always welcomed
I think I may switch to Invision version in April, though. I've had phpBB2 for far too long now.
thanks, Ange
best regards
from the ACP previews, I could only surmise that it's optimized for mobile viewing
because it basically tightens everything, and makes most parts taller
but hey, variety and freedom of choice is always welcomed
I think I may switch to Invision version in April, though. I've had phpBB2 for far too long now.
thanks, Ange
best regards
Re: ModernBB: A new forum version for Forumotion forums
@Ange Tuteur Thank you for that code and yes it worked but it's moved the navbar from the top to under the logo / banner i liked it the way it was over the top of the banner
Re: ModernBB: A new forum version for Forumotion forums
I love the way the reputation option looks and works in posts.
I can not wait to see the final product. I mean when it is out of beta.
Question: Why is the height of the headerbar so big (350px)?
I can not wait to see the final product. I mean when it is out of beta.
Question: Why is the height of the headerbar so big (350px)?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: ModernBB: A new forum version for Forumotion forums
My advice for better navigation and better planning:
1. Avatar in the name at the top, Alerts with avatar, recent topics, friends.
2. Quick access to friends (menu)
3. Notifications to enter time and date (menu)
4. Incoming messages (menu)
5. Neatly subsforums
6. It is important to enter the selection for more than one category of news the portal
7. The ability to enter widget with images of subjects from some category
8. The option to remove things from the menu without code (e.g /faq)
9. Also in "vogue" now are the elements of the page to be without borders (it is not necessary)
10. The widget appear only in forums and portal
11. Redundant symbols recent topics and categories (only in these points)
12. Slow loading toolbar in top (important)
https://help.forumotion.com/t120096-new-features-toolbar-notifications-and-more
13. Link for each post
I'll fill when open templates.
1. Avatar in the name at the top, Alerts with avatar, recent topics, friends.
2. Quick access to friends (menu)
3. Notifications to enter time and date (menu)
4. Incoming messages (menu)
5. Neatly subsforums
6. It is important to enter the selection for more than one category of news the portal
7. The ability to enter widget with images of subjects from some category
8. The option to remove things from the menu without code (e.g /faq)
9. Also in "vogue" now are the elements of the page to be without borders (it is not necessary)
10. The widget appear only in forums and portal
11. Redundant symbols recent topics and categories (only in these points)
12. Slow loading toolbar in top (important)
https://help.forumotion.com/t120096-new-features-toolbar-notifications-and-more
13. Link for each post
I'll fill when open templates.
Re: ModernBB: A new forum version for Forumotion forums
Here are some reports:
- Spoiler:
- 1) These images should be changed: arrow_up.gif and arrow_down.gif - These are better:
2) Why there are some icons that are great 512x512px? forum_read.png and icon_ads.png (In the admin panel they are very large) - The others are large 50x50px
3) Are button icons no longer editable from the admin panel? If we can not change them, why there are still fields in the admin panel?l
4) Council: decrease the size of text in the last topics widget
5) Some reviewers have pointed out that if a user does not have the avatar, in terms of aesthetics to see is ugly. Exemple:
7) The Quick Search box does not work and does not appear. UPDATE: I discovered that this is a problem because I have decreased the height of the header ... with z-index is not resolved ---> try to look at the problem here: http://forumdiprova.forumattivo.com/
- Also often it opens in shallow parts of the forum - Exemple: https://i.imgur.com/NH9Nllq.png
8 ) I do not really like the superposition of the same color in the groups page:
9) In the footer of the statistic profile page (Exemple: URL/u1stats), a number appears (I think is the number of messages and I do not know if it also appears on other pages):
10) Would you change this translation? Is it not too long?
11) In the path of the page "Split this topic", why do not you use the arrows > like in the posts?
12) Something does not convince me... The button often wraps and there is little margin
13) In a forum that is closed... the buttons are very loose and they go on a new line
14) There is plenty of room at the top
15) If I restrict the browser window, the editor's height shrinks
16) In this page (exemple): https://modernbb.forumactif.com/faq?mode=bbcode --> There is an empty box at the top
17) The border no longer appear on the edges of the tables with [table border = "1"]
18) HR tag does not work correctly
Re: ModernBB: A new forum version for Forumotion forums
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: ModernBB: A new forum version for Forumotion forums
I mean the avatar but the problem now is solved.
Thank you
Thank you
Re: ModernBB: A new forum version for Forumotion forums
Any dark themes of this available?
Edit - I take that back since you can customize it to look however you want. I really like it, it's very sleek and well... modern.
Edit 2 - Seems like you cant change the color of the toolbar though, change never happens when you save it.
Edit 3 - Seems the toolbar was a caching issue despite F5ing it.
Ever consider adding NodeBB to the family? Would be another great software.
Edit - I take that back since you can customize it to look however you want. I really like it, it's very sleek and well... modern.
Edit 2 - Seems like you cant change the color of the toolbar though, change never happens when you save it.
Edit 3 - Seems the toolbar was a caching issue despite F5ing it.
Ever consider adding NodeBB to the family? Would be another great software.
Charisma Clash- Forumember
- Posts : 166
Reputation : 2
Language : English
Re: ModernBB: A new forum version for Forumotion forums
I have an issue with the header size of my forum, there is a blue rectangle that is far too deep (long). Is there any way I can reduce the size?
http://www.wigan-rejects.com/
Could do with making the forum itself a touch wider as well if it's possible. Tried AP > General > Forum - Configuration, but no matter what number I change the width to it changes nothing....Appreciate any advice.
http://www.wigan-rejects.com/
Could do with making the forum itself a touch wider as well if it's possible. Tried AP > General > Forum - Configuration, but no matter what number I change the width to it changes nothing....Appreciate any advice.
Re: ModernBB: A new forum version for Forumotion forums
- Code:
.headerbar {
width:1320px;
margin-left:50px;}
Should stay focused with the forum
If you already have that css in your css editor then just add the 2 new modifiers
Re: ModernBB: A new forum version for Forumotion forums
Charisma Clash wrote:Any dark themes of this available?
Edit - I take that back since you can customize it to look however you want. I really like it, it's very sleek and well... modern.
Edit 2 - Seems like you cant change the color of the toolbar though, change never happens when you save it.
Edit 3 - Seems the toolbar was a caching issue despite F5ing it.
Ever consider adding NodeBB to the family? Would be another great software.
As this is in beta mode we do not have any themes for this but you can make the change your self.
I am working on a theme that is dark right now but as hitskin is not setup to save them yet it can not be added to the system
but when i am done i will post it on the right part of the support forum but right now this is in BETA mode so it's still showing some bugs.
Re: ModernBB: A new forum version for Forumotion forums
jucarese wrote:
- Code:
.headerbar {
width:1320px;
margin-left:50px;}
Should stay focused with the forum
If you already have that css in your css editor then just add the 2 new modifiers
Thanks, but that just narrows the width rather than the depth.
Need to be able to decrease the height if you will
Re: ModernBB: A new forum version for Forumotion forums
I really like this new version! Thanks for this
I hope the final version will be launched soon
I hope the final version will be launched soon
Re: ModernBB: A new forum version for Forumotion forums
Caught one bug, it doesn't allow you to change the color of the links to the subforum
It stays the default blue even if you change around the colors.
It stays the default blue even if you change around the colors.
Last edited by Charisma Clash on Sat 11 Mar - 8:42; edited 1 time in total
Charisma Clash- Forumember
- Posts : 166
Reputation : 2
Language : English
Re: ModernBB: A new forum version for Forumotion forums
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: ModernBB: A new forum version for Forumotion forums
Yea that's on me. My theme was dark so naturally I put the text as white, but now I have it as a greyish color so people can see it. One thing I noticed is that sidebars or widgets don't show up on mobile for some reason.
Charisma Clash- Forumember
- Posts : 166
Reputation : 2
Language : English
Re: ModernBB: A new forum version for Forumotion forums
Gwim_Weaper wrote:jucarese wrote:
- Code:
.headerbar {
width:1320px;
margin-left:50px;}
Should stay focused with the forum
If you already have that css in your css editor then just add the 2 new modifiers
Thanks, but that just narrows the width rather than the depth.
Need to be able to decrease the height if you will
No one can assist?
Re: ModernBB: A new forum version for Forumotion forums
Im in the process of changing to this theme. Its exactly what I wanted! But The header section is black, and I want it white with a logo added. I cant seem to find where to change this. Ive changed just about everything in display, but still no change. Probably a really stupid question, but if you could point me in the right direction please?
Re: ModernBB: A new forum version for Forumotion forums
I know, ive changed just about everything there, but with no joy. Which section changes the header background colour?
Page 1 of 4 • 1, 2, 3, 4
Similar topics
» New: The ModernBB version of Forumotion forums is now responsive
» Forumotion forum version
» "AwesomeBB" : The new Forumotion forum version
» Discover "AwesomeBB" : The new Forumotion forum version
» Miscellaneous changes to default templates
» Forumotion forum version
» "AwesomeBB" : The new Forumotion forum version
» Discover "AwesomeBB" : The new Forumotion forum version
» Miscellaneous changes to default templates
Page 1 of 4
Permissions in this forum:
You cannot reply to topics in this forum