XF 1.5 Profile block/widget

hollosch

Active member
Licensed customer
Hi,
i want to deactivate the profile block/widget in my forum. How can i do that ?

SCREEN#351-20151208.webp
 
If you want it removed from all pages, add this to EXTRA.css:
Code:
.sidebar .visitorPanel
{
    display: none;
}


For just the forum index, use this:
Code:
.forum_list .sidebar .visitorPanel
{
    display: none;
}
 
Back
Top Bottom