[TUT] Remove unneeeded elements from the login page

[TUT] Remove unneeeded elements from the login page

Sauron

Co-Founder
Staff
Leadership
MC Models
SpigotVIP
Member
Sauron submitted a new resource:

[TUT] Remove unneeeded elements from the login page - Remove unneeeded elements from the login page

Compatible XF Versions
1.0, 1.1, 1.2, 1.3, 1.4, 1.5
Overview
This guide will show you how to remove the header, breadcrumbs & footer on login pages.

Go to the template "login_page" and replace everything with this:
HTML:
<xen:title>{xen:phrase log_in}</xen:title>

<style type="text/css">
#header { display: none; }
.footer { display: none; }
.breadcrumb { display: none; }
</style>

<xen:include template="helper_login_form" />
You can further customize to suit your needs....

Read more about this resource...
 
Top