04 Jul 2011, 22:44
Reply
Reply with Quote
Like (0)
#2
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
Reply
Reply with Quote
Like (0)
#3
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: 750 px;
vertical-align: top;
border: 1px solid #9a9a9a;
}
... and change the 750 to 950
04 Jul 2011, 22:47
Reply
Reply with Quote
Like (0)
#4
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
Reply
Reply with Quote
Like (0)
#5
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.