Hello, i want to have 2 column in modern statistics, like new user and recent thread. There is demo, thanks
You can add this code into your PAGE_CONTAINER template where you want to display. Code: <div class="columnsContainer"> <div class="leftColumn"><xen:hook name="msLeftColumn" /></div> <div class="rightColumn"><xen:hook name="msRightColumn" /></div> </div> And add following code into EXTRA.css template Code: .leftColumn { float: left; width: 50%; } .rightColumn { float: right; width: 50%; } .columnsContainer { content:""; display: table; clear: both; } Then create 2 modern stats with above hook name (msLeftColumn & msRightColumn) Regards,
Hello, i thanks for your help. But i have problem with mobile browser. Can i hide modern statistic on mobile? Thanks
Just adding following code into EXTRA.css template Code: <xen:if is="@enableResponsive"> @media (max-width:@maxResponsiveNarrowWidth) { .Responsive .columnsContainer { display: none; } } </xen:if>