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?
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?
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;
![]()
You need to edit the following file:
includes/languages/endlish/header.php
toPHP Code:define('HEADER_SALES_TEXT', 'Vintage Knits');
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...PHP Code:define('HEADER_SALES_TEXT', '');
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
20 years a Zencart User
Ha Ha... posting at the same time. We agree on PART of the answer... Yes... you can use DISPLAY NONE as well...
20 years a Zencart User
thanks! Did both things you suggested and appreciate the help.