Zen Cart Logo
Forums / General Questions / Red cross showing up in IE...

Red cross showing up in IE...

Locked

Views: 1,157

Results 1 to 9 of 9
This thread is locked. New replies are disabled.
8 Oct 2008, 11:08 AM
#2
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Red cross showing up in IE...

That would be your logo if you had one.

In the stylesheet, separate #logo from the rest of that stuff, annd add display:none; to #logo

9 Oct 2008, 9:15 AM
#3
wdd49 avatar

wdd49

New Zenner

Join Date:
Jan 2008
Posts:
45
Plugin Contributions:
0

Re: Red cross showing up in IE...

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

like that? Which stylesheet should this be done on?? sorry im a complete novice with stylesheets.

i have tried the above but it dosn't work.

9 Oct 2008, 9:26 AM
#4
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Red cross showing up in IE...

wdd49:

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

like that?
NO!!
**IN YOUR CURRENT TEMPLATES STYLESHEET **
add

#logo {
display:none;
}

In your code you have added to many other settings
to display none.

9 Oct 2008, 10:11 AM
#5
wdd49 avatar

wdd49

New Zenner

Join Date:
Jan 2008
Posts:
45
Plugin Contributions:
0

Re: Red cross showing up in IE...

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

is what is currently there?! im so confused!

this css is located in zencat/templates/classic/css

thats the right css im editing isn't it?

9 Oct 2008, 10:31 AM
#6
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Red cross showing up in IE...

Visit site as per your initial post in this thread..
via browser..view source..reveals

includes/templates/classic/css/stylesheet.css
That is file you should be editing...
BACKUP FILES BEFORE ALTERING!!

9 Oct 2008, 12:11 PM
#7
stevesh avatar

stevesh

Black Belt

Join Date:
Feb 2005
Location:
Lansing, Michigan USA
Posts:
19,793
Plugin Contributions:
2

Re: Red cross showing up in IE...

As Misty said, open includes/templates/classic/css/stylesheet.css

Find the line you mentioned:

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

Remove the #logo (and the comma):

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

Under that, create a new statement for logo:

#logo {
float:left;
display:none;
}

When you see a list of class and id names in a stylesheet statement separated by commas, it's just a way to make the stylesheet file smaller by combining elements which have identical style elements into one statement. You can always separate them if you want to style one differently, as above.

10 Oct 2008, 8:48 AM
#8
wdd49 avatar

wdd49

New Zenner

Join Date:
Jan 2008
Posts:
45
Plugin Contributions:
0

Re: Red cross showing up in IE...

Thanks so much:-D You are both stars!

10 Oct 2008, 9:31 AM
#9
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Red cross showing up in IE...

wdd49:

Thanks so much:-D You are both stars!
Pleased to hear problem sorted..
Well Done!!

:clap: