Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / How do I remove this?

How do I remove this?

Views: 476

Results 1 to 5 of 5
4 Jul 2011, 9:06 PM
#1
lavs avatar

lavs

New Zenner

Join Date:
Mar 2009
Posts:
85
Plugin Contributions:
0

How do I remove this?

I succeeded in getting my logo aligned, but my business name is also appearing "over" the links on my index page (http://www.vintageknits.com/index.php) How do I remove that redundant line?

4 Jul 2011, 10:44 PM
#2
donal avatar

donal

Zen Follower

Join Date:
Jan 2009
Location:
Ireland
Posts:
442
Plugin Contributions:
0

Re: How do I remove this?

In your css:

#tagline {
color:#000000;
font-size: 2em;
text-align : center;
vertical-align: middle;
display: none;

add the bit in red

also I would change:
#mainWrapper {
background-color: #ffffff;
text-align: left;
width: 950px;
vertical-align: top;
border: 1px solid #9a9a9a;
:smile:

4 Jul 2011, 10:45 PM
#3
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: How do I remove this?

You need to edit the following file:

includes/languages/endlish/header.php

  define('HEADER_SALES_TEXT', 'Vintage Knits');

to

  define('HEADER_SALES_TEXT', '');

Strictly speaking, you should also save this in a CUSTOM template... I see you are tinkering with CLASSIC template, which is not really a good idea...

ADDITIONALLY, you should give the site a bit more WIDTH.

In stylesheet.css , find:

/wrappers - page or section containers/
#mainWrapper {
background-color: #ffffff;
text-align: left;
width: 750px;
vertical-align: top;
border: 1px solid #9a9a9a;
}

... and change the 750 to 950

4 Jul 2011, 10:47 PM
#4
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Location:
Cumbria, UK
Posts:
10,327
Plugin Contributions:
0

Re: How do I remove this?

Ha Ha... posting at the same time. We agree on PART of the answer... Yes... you can use DISPLAY NONE as well...

4 Jul 2011, 11:07 PM
#5
lavs avatar

lavs

New Zenner

Join Date:
Mar 2009
Posts:
85
Plugin Contributions:
0

Re: How do I remove this?

thanks! Did both things you suggested and appreciate the help.