askvortsov SFrance Certainly, via custom CSS. Note that this will reduce the number of links you can add via fof links, as the header will be smaller.
SFrance I want upgrade the header. So that will be put more spaces. But no problem for the rest? With images : AND : Don't want create trouble if we ajust.
askvortsov SFrance Off the top of my head I don't think that would break anything, but I haven't tried anything like this. You'd need to set up the custom CSS yourself.
clarkwinkelmann I'm not sure if this achieves what you need, but Flarum responsive breakpoints are defined in Less variables https://github.com/flarum/core/blob/v0.1.0-beta.16/less/common/variables.less#L119-L138 You can override the value of those variables by defining them in the Custom CSS setting in the Flarum admin. To customize the width of elements that don't depend on the viewport width, you can use the browser inspect tool to find the classNames you need to target.
luceos vaultboy @screen-tablet: 768px; @screen-desktop: 992px; @screen-desktop-hd: 1100px; I think it's these.
Subarist vaultboy .container { width: 1200px; } Setting the value to "auto" should also allow for adaptive adjustment to the widest screen.