XF 1.2 Remove members list

tekgirl

Active member
How can I remove the member's list from guest view...I know how to do it in 1.1, but didn't know if I have to do it the same way in 1.3...

Thanks
 
Admin CP -> Appearance -> Templates -> EXTRA.css

This will hide the members tab for everyone:

Code:
.navTabs .navTab.members
{
    display: none !important;
}
I added that in and I can still see the Members tab logged in as an admin. I made that change in the child style EXTRA.css template that is set as default for the site. Is that not the correct way to do it?
 
I added that in and I can still see the Members tab logged in as an admin. I made that change in the child style EXTRA.css template that is set as default for the site. Is that not the correct way to do it?
That was the problem, I was viewing the site in the wrong theme. Sorry, my fault.
 
Top Bottom