XF 2.0 How can I make the header background (and logo) disappear after login?

Search for <header class="p-header" id="header"> in Page_Container.

Add this before:

<xf:if is="!$xf.visitor.user_id">

Add this after the final div for the header class.

</xf:if>
 
Top Bottom