llaumgui Hi, I would like display a footer in my forum... But currently my right page navigation in discussion page overlap my footer... Is there a way to fix this ?
Justoverclock add this in custom css: @media (min-width: 700px) { .DiscussionPage-nav, .DiscussionPage-nav>ul { position: sticky; top: 80px; } .App {overflow-x: visible;} } .Post::before, .Post::after {content:none;}
llaumgui Thx Justoverclock ! I have just do some modifications: @media @tablet-up { .DiscussionPage-nav, .DiscussionPage-nav>ul { position: sticky; top: 80px; } .App { overflow-x: visible; padding-bottom: 40px; } }