Version 3.0.0. Breaks Layout
-
I recently upgraded to 3.0.0., and it broke the format of my login page. I managed to fix it through use of custom CSS, but I wanted to let the devs know, and to give a possible solution to anyone else facing this problem.
In version 1.8, the CSS was such that the logo and footer text appeared to be inside the form box. Now, the CSS has changed so they appear outside the form box, making them basically unreadable if you were relying on the form box’s background color. (See below, version 1.8 on left, version 3.0.0 on right).The only solution seems to be using custom CSS to assign a background color to the entire login area, then removing the border styles of the actual login form. For anyone interested in the solution I used, I applied the following custom CSS:
#login { border-radius: 25px; background: white; box-shadow: 0 0 10px rgba( 0,0,0,0.6 ); padding: 26px 20px 0px 20px; } .login form { box-shadow: none; }
It’s not exactly like I had it with version 1.8, but it’s close. I also had to add some custom CSS to get the checkmark back to my old color.
The page I need help with: [log in to see the link]
- The topic ‘Version 3.0.0. Breaks Layout’ is closed to new replies.