Hello, In laravel 5.8 / bootstrap 4.1. app I have pages with doubled y scrolling : https://prnt.sc/10jf83i and I try to remove scrolling of the page(internal scrolling) In app/views/layout/member.blade.php I have : <body> @include('elements.member_header') @yield('content') @include('elements.member_footer') <script> public(); </script> @yield('scripts') </body> HTML: and in page.blade.php : @extends('layout.app') @section('title', $title) @section('description', $description) @section('content') <div class="member-wrapper" id="member-content"> @include('elements.member_sidebar') <div class="content-wrapper"> <div class="single-page"> <div class="pages-heading"> <h2>@lang('member.profile')</h2> </div> PHP: If I try to salve with definition : <div class="content-wrapper" style="overflow-y: hidden !important;"> HTML: Then bottom of the page is hidden in case in dynamic content of the page is big in height. Any hints if there is a way to salve it ? Thanks!
To check live : please register at site https://staging.gotoconsult.com and after that open profile page under your credentials and check this error : https://prnt.sc/10jhpe9 This project was not started by me - I continue work with it after other developers. Thanks!