White stripe below the footer in the Airship with Adminlte

Asked

Viewed 173 times

0

It was learning to use the Laravel 5 Framework, using the Adminlte template and there is a fact that is bothering me a lot, a direct track appears and so cutting the look of the template, below the footer, someone knows tell me what can be.

Follow picture

inserir a descrição da imagem aqui

2 answers

0

Make sure, that all page tags (div, form, input) where the problem appears are closed correctly.

<html>
    <head>
        <title></title>
    </head>
    <body>
        <div>
            <label></label>
            <input type="text" >
        </div>
    </body>
</html>

0


In the directory settings config/adminlte.php, which is the template settings change file.

This file is obtained by command in the php terminal

artisan vendor:publish --provider="JeroenNoten\LaravelAdminLte\AdminLteServiceProvider" --tag=views,

go on option 'layout_fixed_footer' => true, should be set as false, this will solve your problem.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.