question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

A Quickfix for ".login-page&.register-page" unwanted scroll

See original GitHub issue

I found the issue when I’m trying to use the Latest version of AdminLTE 2. So I made a quick fix about that after a bit trying. It’s .login-page,.register-page{ margin: auto; padding-top: 3%; padding-bottom: 3%; } This would help someone, Thanks! 👍

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Reactions:4
  • Comments:8

github_iconTop GitHub Comments

1reaction
ssunbobcommented, Mar 1, 2017

I suggest you can create your own css style file and load it after the Framework css, It’s like

<link rel="stylesheet" href="pathto/css/AdminLTE.min.css"> // framework css
 <link rel="stylesheet" href="pathto/css/skins/skin-blue.min.css"> // skin css
 <link rel="stylesheet" href="pathto/css/**mystyle**.css"> // **your own css , put fixes into this file :)**
0reactions
onesinuscommented, Nov 24, 2018

set padding top to 10% to make center box, then set overflow to hidden

.login-page, .register-page { background: #d2d6de; padding-top: 10%; overflow: hidden; }

I’ve tried this, hope this help

Read more comments on GitHub >

github_iconTop Results From Across the Web

Scrollbar on Login Page where no scrolling is needed
Try adding the following in your app.module to the imports array of your NgModule : IonicModule.forRoot(MyApp, { scrollPadding: false, ...
Read more >
How do I Hide the scrollbar in my form - formtitan support
How to fix this? 1- The first thing you should check is that none of the form content is sticking out of its...
Read more >
Fix unwanted horizontal scroll and whitespace with Overflow
Sometimes elements on a page can exist outside the viewport, and an unintended side effect can be horizontal or sideways scrolling that ...
Read more >
Scroll Bouncing On Your Websites - Smashing Magazine
Scroll bouncing is undesirable if you don't want to see fixed elements on a page move. Some examples include: when you want a...
Read more >
Finding/Fixing Unintended Body Overflow - CSS-Tricks
Sometimes I use the “Delete Node” feature of DevTools to remove stuff from the page until the scrollbar goes away. Then I know...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found