Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Stacking order on main page

Stacking order on main page

Locked

Views: 1,113

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
1 Oct 2007, 9:10 PM
#1
nomadrw avatar

nomadrw

Zen Follower

Join Date:
Sep 2007
Location:
Somewhere in Southern Cal
Posts:
331
Plugin Contributions:
0

Stacking order on main page

Hello Everyone:
Is there away to place the Welcome Guest? would you like to log in? on the main page to be in the top position ie before Congratuations! you
have....

Welcome Guest!.....
Congratuations! you have...

Also would like to place a space before the two, is that done in the css.

thanks
nomad

2 Oct 2007, 2:32 PM
#3
nomadrw avatar

nomadrw

Zen Follower

Join Date:
Sep 2007
Location:
Somewhere in Southern Cal
Posts:
331
Plugin Contributions:
0

Re: Stacking order on main page

No I know how to do that. I want The log-in to be first.

nomad

2 Oct 2007, 3:08 PM
#4
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Stacking order on main page

nomadrw:

No I know how to do that. I want The log-in to be first.

nomad

open includes/templates/template_default/templates/tpl_index_default.php

find the following section of code:

<h1 id="indexDefaultHeading"><?php echo HEADING_TITLE; ?></h1>

<?php if (SHOW_CUSTOMER_GREETING == 1) { ?>
<h2 class="greeting"><?php echo zen_customer_greeting(); ?></h2>
<?php } ?>

and just swap them around as follows:

<?php if (SHOW_CUSTOMER_GREETING == 1) { ?>
<h2 class="greeting"><?php echo zen_customer_greeting(); ?></h2>
<?php } ?>
<h1 id="indexDefaultHeading"><?php echo HEADING_TITLE; ?></h1>

save the edited file to:
includes/templates/YOUR_TEMPLATE/templates/tpl_index_default.php

upload to your server.

2 Oct 2007, 9:57 PM
#5
nomadrw avatar

nomadrw

Zen Follower

Join Date:
Sep 2007
Location:
Somewhere in Southern Cal
Posts:
331
Plugin Contributions:
0

Re: Stacking order on main page

thanks for the info Clyde

2 Oct 2007, 10:10 PM
#6
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Stacking order on main page

nomadrw:

thanks for the info Clyde

Not at all