Editing Login Page Layout

Re: Editing Login Page Layout

by Marche Lee -
Number of replies: 2

@Richard : I have actually tried that before and it is not working.. The 'You are not Log in' and 'Home' is not below the 'Log In as a Guest'

@Mary: I am trying to customize the login page into like this.. 


Can I also know how to find the template file for dashboards, etc stuff? 

Is it true that I need to inspect element and check the id of the body and find pagelayout-mydashboard?


Much Thanks

Attachment Capture.JPG
In reply to Marche Lee

Re: Editing Login Page Layout

by Mary Evans -
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of Testers

Hi, 

Its an easy fix...or would be in Clean them but a bit more complex in Boost theme as I'm not sure where everything is situated there seems to be too many elements tgat are not in themselves easy to understand with all those curly brackets everywhere...

im going to do some testing and will post you a solution shortly.

Cheers

Mary

In reply to Marche Lee

Re: Editing Login Page Layout

by Mary Evans -
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of Testers

OK...here is a fix for the login page:

If you remove both the login_info and home_link from the footer section of the theme/boost/templates/login.mustache file as Richard suggested, but put them directly ABOVE the course footer in the like so...

    <div id="page" class="container-fluid">
        <div id="page-content" class="row">
            <div id="region-main-box">
                <section id="region-main" class="col-xs-12">
                    {{{ output.course_content_header }}}
                    {{{ output.main_content }}}
                    {{{ output.login_info }}}
                    {{{ output.home_link }}}
                    {{{ output.course_content_footer }}}
                </section>
            </div>
        </div>
    </div>
</div>

This is what it looks like....

Hope this helps?

Mary

Average of ratings: Useful (1)