Zen Cart Logo

Remove Logo

Views: 798

Results 1 to 2 of 2
01 Jul 2013, 20:27
#1
deel avatar

deel

New Zenner

Join Date:
Jan 2013
Location:
Eustis, Florida, United States
Posts:
84
Plugin Contributions:
0

Remove Logo

It has been a long long time since I have done anything on this site and I have totally lost my way around here. I have searched but I cannot remember if it is referred to as a header or a logo so I can't really find the instructions I need.

I need to remove the header/logo at the top left of the page at https://www.livingtowers.com/coopstore Can someone point me to the documentation or the settings to be able to do this?

Thanks

01 Jul 2013, 21:14
#2
frank18 avatar

frank18

Deceased

Join Date:
Nov 2007
Location:
Sunny Coast, Australia
Posts:
3,427
Plugin Contributions:
2

Re: Remove Logo

In your stylesheet.css look for #logo

You should find

#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
    float: left;
}

You could split this to

.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
    float: left;
}

#logo {
    display: none;
}

The logo itself is located at includes/templates/emeralda/images/LT banner424x95.png

Cheers / Frank