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

How do I remove this?

Results 1 to 5 of 5
04 Jul 2011, 21:06
#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?
04 Jul 2011, 22:44
#2
donal avatar

donal

Zen Follower

Join Date:
Jan 2009
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:
04 Jul 2011, 22:45
#3
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Posts:
10,324
Plugin Contributions:
0

Re: How do I remove this?

You need to edit the following file:

includes/languages/endlish/header.php

[PHP] define('HEADER_SALES_TEXT', 'Vintage Knits');[/PHP]

to

[PHP] define('HEADER_SALES_TEXT', '');[/PHP]

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
04 Jul 2011, 22:47
#4
schoolboy avatar

schoolboy

Totally Zenned

Join Date:
Jun 2005
Posts:
10,324
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...
04 Jul 2011, 23:07
#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.