Zen Cart Logo
Forums / General Questions / Move Site Heading

Move Site Heading

Locked

Views: 984

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
1 Apr 2007, 5:57 PM
#1
bumba000 avatar

bumba000

Totally Zenned

Join Date:
Feb 2007
Location:
Pennsylvania
Posts:
858
Plugin Contributions:
0

Move Site Heading

Hi all,
Would like to know how to move my sites heading. It says Professional Car Audio in the center and I would like to move it to the left.
Thank You,
John

1 Apr 2007, 6:31 PM
#2
bumba000 avatar

bumba000

Totally Zenned

Join Date:
Feb 2007
Location:
Pennsylvania
Posts:
858
Plugin Contributions:
0

Re: Move Site Heading

I found the answer in the same place I wrote my H1 tag!
/includes/languages/english/MyTemplate/ ! ! !

Changes made are listed here:

Original

// added defines for header alt and text
define('HEADER_ALT_TEXT', '[home link]');
define('HEADER_SALES_TEXT', '<h1>Professional Car Audio</h1>');
define('HEADER_LOGO_WIDTH', '200px');
define('HEADER_LOGO_HEIGHT', '70px');
define('HEADER_LOGO_IMAGE', '');

Moved Left!
// added defines for header alt and text
define('HEADER_ALT_TEXT', '[home link]');
define('HEADER_SALES_TEXT', '<h1 align="left">Professional Car Audio</h1>');
define('HEADER_LOGO_WIDTH', '200px');
define('HEADER_LOGO_HEIGHT', '70px');
define('HEADER_LOGO_IMAGE', '');

                 Thank Me,
                                John
1 Apr 2007, 9:13 PM
#3
Kim avatar

Kim

Obaa-san

Join Date:
Jun 2003
Location:
West Coast, North America
Posts:
26,606
Plugin Contributions:
0

Re: Move Site Heading

The correct way to do that would be to use the STYLESHEET.

H1 #tagline {text-align: left;}