Results 1 to 9 of 9
  1. #1
    Join Date
    Jan 2008
    Posts
    45
    Plugin Contributions
    0

    Default Red cross showing up in IE...

    http://horseboxsupplies.co.uk/zencart/

    If you open in ie a red cross appears in the top corner but it isn't looking for acutal image i dont think just a path.

    http://horseboxsupplies.co.uk/zencar...lassic/images/

    Can anyone help with how to get rid of the cross?

  2. #2
    Join Date
    Feb 2005
    Location
    Lansing, Michigan USA
    Posts
    20,021
    Plugin Contributions
    3

    Default 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

  3. #3
    Join Date
    Jan 2008
    Posts
    45
    Plugin Contributions
    0

    Default 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.

  4. #4
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Red cross showing up in IE...

    Quote Originally Posted by wdd49 View Post
    #logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
    float: left;
    display:none;
    }

    like that?
    NO!!
    IN YOUR CURRENT TEMPLATES STYLESHEET
    add
    Code:
    #logo {
    display:none;
    }
    In your code you have added to many other settings
    to display none.

  5. #5
    Join Date
    Jan 2008
    Posts
    45
    Plugin Contributions
    0

    Default 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?

  6. #6
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default 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!!

  7. #7
    Join Date
    Feb 2005
    Location
    Lansing, Michigan USA
    Posts
    20,021
    Plugin Contributions
    3

    Default 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.

  8. #8
    Join Date
    Jan 2008
    Posts
    45
    Plugin Contributions
    0

    Default Re: Red cross showing up in IE...

    Thanks so much:-D You are both stars!

  9. #9
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Red cross showing up in IE...

    Quote Originally Posted by wdd49 View Post
    Thanks so much:-D You are both stars!
    Pleased to hear problem sorted..
    Well Done!!


 

 

Similar Threads

  1. Can't delete red cross
    By gobblersrun in forum General Questions
    Replies: 7
    Last Post: 15 Dec 2009, 12:03 PM
  2. Images: red cross
    By vlissinger in forum General Questions
    Replies: 2
    Last Post: 28 Jun 2009, 03:31 PM
  3. Replies: 7
    Last Post: 7 Dec 2008, 08:54 PM
  4. red text and cross out of old price not showing up
    By yahzi in forum Setting Up Specials and SaleMaker
    Replies: 5
    Last Post: 26 Nov 2008, 12:26 PM
  5. Small Red Cross only in IE
    By arpeggio in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 5 Aug 2007, 07:06 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg