Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<xf:widget key="forum_overview_new_posts" />
.canvas-left [data-widget-key="forum_overview_new_posts"]
{
.block-container
{
background: transparent;
box-shadow: none;
border-width: 0;
}
}
thanks it work...You can use widgets to do this. Inside the template "xb_canvas_panel_bottom"
Then create a widget
Code:<xf:widget key="forum_overview_new_posts" />
Then some CSS inside the template "extra.less"
Code:.canvas-left [data-widget-key="forum_overview_new_posts"] { .block-container { background: transparent; box-shadow: none; border-width: 0; } }
Should get you started.