Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / want to remove small logo at top left

want to remove small logo at top left

Locked

Views: 1,772

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
21 Oct 2007, 9:17 PM
#1
dedj avatar

dedj

Zen Follower

Join Date:
Jan 2007
Posts:
129
Plugin Contributions:
0

want to remove small logo at top left

Hi.
I can't remember where I found info when I added the small logo at the top left on my webshop..
http://rr-p.se/webshop

I would like to remove it, but can only find to remove it by editing and removing the element "<div id="logo"> ****** </div>

Wanted to doublecheck before I do so, wasn't there an setting in admin for this?
Else I will need to modify file.

thanks
Dejan

21 Oct 2007, 9:48 PM
#2
kiddo avatar

kiddo

Totally Zenned

Join Date:
Jul 2006
Location:
SF Bay Area
Posts:
837
Plugin Contributions:
1

Re: want to remove small logo at top left

You could try adding:

#logo{display:hidden;}

to your stylesheet perhaps.

22 Oct 2007, 12:02 PM
#3
section1 avatar

section1

New Zenner

Join Date:
Oct 2007
Posts:
99
Plugin Contributions:
0

Re: want to remove small logo at top left

I manually deleted the logo I think it was in english, images but then I got stuck with the link name so I tried deleting it from english,classic, header.php but still I can't get rid of the link name. I hope this has somewhat helped even though I need the help

22 Oct 2007, 2:23 PM
#4
dedj avatar

dedj

Zen Follower

Join Date:
Jan 2007
Posts:
129
Plugin Contributions:
0

Re: want to remove small logo at top left

kiddo:

You could try adding:

#logo{display:hidden;}

to your stylesheet perhaps.

just tried, doesn work to set it as hidden.

only thing i noticed was that i can change if to be on left or right side by the already existing "float" setting
float: left;
or
float: right;

but cant seem to get rid of it!

HELP! :blink:

22 Oct 2007, 2:31 PM
#5
tshooters avatar

tshooters

Totally Zenned

Join Date:
Dec 2005
Posts:
1,037
Plugin Contributions:
2

Re: want to remove small logo at top left

Try this in your stylesheet.css. On this line, remove what's in red.

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

Then add to your stylesheet.css:

#logo {display:none;}

22 Oct 2007, 4:51 PM
#6
andrewclarke avatar

andrewclarke

New Zenner

Join Date:
May 2006
Location:
Isle of Wight, UK
Posts:
77
Plugin Contributions:
1

Re: want to remove small logo at top left

Hello OP

A nice easy way so you don't need to touch the code......

Open Paint, fill the page grey & set the size to 1px x 1px and save it as logo.gif.

Upload it to:

public_html/includes/templates/red_passion/images/

load the page and your logo has 'gone'

All the best
Andrew

22 Oct 2007, 9:40 PM
#7
dedj avatar

dedj

Zen Follower

Join Date:
Jan 2007
Posts:
129
Plugin Contributions:
0

Re: want to remove small logo at top left

thanks!
worked great!

:D

TShooters:

Try this in your stylesheet.css. On this line, remove what's in red.

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

Then add to your stylesheet.css:

#logo {display:none;}