Quote Originally Posted by lat9 View Post
Get rid of the sidebars, they just take up (distracting) space when someone's trying to register/login. Create a file named /includes/modules/pages/login/header_php_disable_sidebars.php that contains:
Code:
<?php
$flag_disable_right = true;
$flag_disable_left = true;
That little bit of code will disable the right and left sidebars only for the login page (you can put the same code module in other page directories to effect the same result).
I created the file and stuck it on the server. Not only did it give the page some room to work with, it fixed the misalignment problem.

Quote Originally Posted by Ajeh View Post
The button appears to be only there if something is in the cart ...
You're absolutely right, I'm surprised neither of us noticed this before. I wonder, is there a way to make that box disappear when a customer has nothing in their cart? I see no use for it on the page if all they want to do is create an account.

Thanks guys! You're amazing!