I was wondering if anyone knows how to center the customer greeting? The one in the middle of the page that says: "Welcome! Would you like to log yourself in?" and the one above it?
Thank you in advance
I was wondering if anyone knows how to center the customer greeting? The one in the middle of the page that says: "Welcome! Would you like to log yourself in?" and the one above it?
Thank you in advance
open /public_html/includes/languages/english/index.php
look for:
define('TEXT_GREETING_GUEST', 'Welcome <span class="greetUser">Guest!</span> Would you like to <a href="%s">log yourself in</a>?');
add:
define('TEXT_GREETING_GUEST', '<center>Welcome <span class="greetUser">Guest!</span> Would you like to <a href="%s">log yourself in</a>?</center>');
may also want to change:
define('TEXT_GREETING_PERSONAL', 'Hello <span class="greetUser">%s</span>! Would you like to see our <a href="%s">newest additions</a>?');
to:
define('TEXT_GREETING_PERSONAL', '<center>Hello <span class="greetUser">%s</span>! Would you like to see our <a href="%s">newest additions</a>?</center>');
While that would work, I think it's always better to avoid inline styling and use the stylesheet. Try adding this to the bottom of stylesheet.css:
.greeting {text-align:center;}
Ok which stylesheet.css is the one I should modify? I did a search and found stylesheet.css in 4 different locations. Thank you for you help
Awesome that worked! Now what about the line right above it? Is there a css code that I can use for this line also? I think it's the Heading Title.
A link would be good
Is it the line that used to say "Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution." which i assume you have changed
If so it would be something like this, at the bottom of your stylesheet
#indexDefaultHeading {text-align:center;}
woops sorry...
http://www.aclassactapparel.com/
It's the line that says: Welcome to A Class Act Apparel
that I would like to center. Thanks again
Awesome! Thank you so much!