Page 1 of 2 12 LastLast
Results 1 to 10 of 16
  1. #1
    Join Date
    Aug 2007
    Location
    Brighton, UK
    Posts
    203
    Plugin Contributions
    0

    Default Cant get rid of if link on banner!

    On IE there is still a link on the top far left hand side of my banner, however i have tried deleting it and now all that is left is the red "x" where a picture should be. How do i completely remove this? Cheers

    Website shown here www.orcharddirect.co.uk/store

  2. #2
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,266
    Plugin Contributions
    3

    Default Re: Cant get rid of if link on banner!

    You don't have an image called bannertop.jpg in your images folder, and your banner image is being rendered as your background image

    Go to your stylesheet and find:-

    #logoWrapper{

    background-image: url(../images/bannertop.jpg);

    and change it to:-

    PHP Code:
    #logoWrapper{

        
    background-imageurl(../images/bannerback.jpg); 
    Then create a pure white image (jpg) of dimensions 810 X 155 and call it bannerback.jpg

    FTP this image to your images folder (NOT the one in your custom template, the one in your root directory).

    This may blot out your banner all together.

    If so, try commenting out the reference to the background image in your stylesheet

    PHP Code:
    #logoWrapper{

        /*background-image: url(../images/bannerback.jpg);*/ 
    Failing that... make sure you have all the appropriate images, and that the paths to call them are correct.
    20 years a Zencart User

  3. #3
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,266
    Plugin Contributions
    3

    Default Re: Cant get rid of if link on banner!

    (don't know if any of the above will work, actually!!)

    But seriously... In the HEADER (Logo Wrapper) you need a background image and a logo image. Check also english.php in the language folder (of your custom template) and look for logo.gif and / or logo.jpg.

    (Are you referencing the correct image, according to how it's named in the defines?)

    I hope this garbled attempt at support helps you!
    20 years a Zencart User

  4. #4
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Cant get rid of if link on banner!

    What have you done for the removal??

    This looks to be seeking logo.gif
    Zen-Venom Get Bitten

  5. #5
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Cant get rid of if link on banner!

    Not actually in english.php but in includes/languages/english/header.php

    Looks like this:
    Code:
    // added defines for header alt and text
      define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce');
      define('HEADER_SALES_TEXT', 'TagLine Here');
      define('HEADER_LOGO_WIDTH', '192px');
      define('HEADER_LOGO_HEIGHT', '64px');
      define('HEADER_LOGO_IMAGE', 'logo.gif');
    Make it like this:
    Code:
    // added defines for header alt and text
      define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce');
      define('HEADER_SALES_TEXT', 'TagLine Here');
      define('HEADER_LOGO_WIDTH', '192px');
      define('HEADER_LOGO_HEIGHT', '64px');
      define('HEADER_LOGO_IMAGE', '');
    Red is a pair of single quotes that MUST be retained
    Zen-Venom Get Bitten

  6. #6
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,266
    Plugin Contributions
    3

    Default Re: Cant get rid of if link on banner!

    Kobra (apologies for the english.php...)

    But the source code on the page shows this:-

    <div id="logoWrapper">

    <div id="logo"><a href="http://www.orcharddirect.co.uk/store/"><img src="includes/templates/orchard/images/" alt="" /></a></div>

    There's no reference to an image in the img src.

    ... ???
    20 years a Zencart User

  7. #7
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Cant get rid of if link on banner!

    Quote Originally Posted by schoolboy
    There's no reference to an image in the img src.
    And why I asked what he did??
    Zen-Venom Get Bitten

  8. #8
    Join Date
    Aug 2007
    Location
    Brighton, UK
    Posts
    203
    Plugin Contributions
    0

    Default Re: Cant get rid of if link on banner!

    Lol cheers guys ill have a play around.

  9. #9
    Join Date
    Aug 2007
    Location
    Brighton, UK
    Posts
    203
    Plugin Contributions
    0

    Default Re: Cant get rid of if link on banner!

    Quote Originally Posted by kobra View Post
    Not actually in english.php but in includes/languages/english/header.php

    Looks like this:
    Code:
    // added defines for header alt and text
      define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce');
      define('HEADER_SALES_TEXT', 'TagLine Here');
      define('HEADER_LOGO_WIDTH', '192px');
      define('HEADER_LOGO_HEIGHT', '64px');
      define('HEADER_LOGO_IMAGE', 'logo.gif');
    Make it like this:
    Code:
    // added defines for header alt and text
      define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce');
      define('HEADER_SALES_TEXT', 'TagLine Here');
      define('HEADER_LOGO_WIDTH', '192px');
      define('HEADER_LOGO_HEIGHT', '64px');
      define('HEADER_LOGO_IMAGE', '');
    Red is a pair of single quotes that MUST be retained
    Ive dne that but makes no difference... any ideas?

  10. #10
    Join Date
    Aug 2007
    Location
    Brighton, UK
    Posts
    203
    Plugin Contributions
    0

    Default Re: Cant get rid of if link on banner!

    Quote Originally Posted by kobra View Post
    Not actually in english.php but in includes/languages/english/header.php

    Looks like this:
    Code:
    // added defines for header alt and text
      define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce');
      define('HEADER_SALES_TEXT', 'TagLine Here');
      define('HEADER_LOGO_WIDTH', '192px');
      define('HEADER_LOGO_HEIGHT', '64px');
      define('HEADER_LOGO_IMAGE', 'logo.gif');
    Make it like this:
    Code:
    // added defines for header alt and text
      define('HEADER_ALT_TEXT', 'Powered by Zen Cart :: The Art of E-Commerce');
      define('HEADER_SALES_TEXT', 'TagLine Here');
      define('HEADER_LOGO_WIDTH', '192px');
      define('HEADER_LOGO_HEIGHT', '64px');
      define('HEADER_LOGO_IMAGE', '');
    Red is a pair of single quotes that MUST be retained
    Ive dne that but makes no difference... any ideas? cheers

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Cant Get Rid of Free Shipping Rules
    By Decostyle in forum Built-in Shipping and Payment Modules
    Replies: 7
    Last Post: 17 Dec 2010, 06:52 PM
  2. cant get rid of bullet in doc menu
    By Namtaru in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 8 May 2008, 12:22 AM
  3. cant get rid of items in shopping cart
    By brimsjewelry in forum General Questions
    Replies: 4
    Last Post: 26 Oct 2007, 06:19 PM
  4. Cant get rid of character
    By janks in forum Built-in Shipping and Payment Modules
    Replies: 4
    Last Post: 10 Jul 2006, 10:04 AM

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