DigitalBug I istall Flarum. Change header, footer and write custom CSS/LESS. Stylize Flarum by my website design. But i have issue - somewhere in Flarum javascript calculate and write inline min-height value to root div tag with id="app" and this look poor for me. How i can remove this inline style?
DigitalBug I temporary solved problem by adding '<div id="app" style="display:none;"></div>' at header. But I think it is wrong solution. Maybe someone know better way?
Pollux you could add the following style: #app { min-height: 3000px !important; } By making this style rule !important it will overrule the inline styling.
DigitalBug Pollux thanks. I always thought that inline style is higher priority than !important in css. Live and learn.