Nice looking template! However after I replaced:

if (STORE_STATUS == '0') {
define('TEXT_GREETING_GUEST', '<span class="greetUser">New Customer?</span> <a href="%s">Create Account</a>&nbsp;&nbsp;<span class="greetUser">Returning Customers?</span> <a href="https://mysticmountainnaturals.com/login.html">Log In</a>.');
} else {

with

if (STORE_STATUS == '0') {
define('TEXT_GREETING_GUEST', 'Welcome <span class="greetUser">Guest!</span> Would you like to <a href="%s">log yourself in</a>?');
} else {

I get the following on the login page: (How can I get rid of the //??)

//Welcome, Please Sign In

Returning Customers: Please Log In
thanks