Thread: invisible text

Results 1 to 6 of 6
  1. #1
    Join Date
    Apr 2008
    Posts
    4
    Plugin Contributions
    0

    Default invisible text

    hi....how do you make text invisible in tagline and shop name invisible...i loaded header with shop name already ..i am new so sorry if this sounds like dumb question are i listed it in wrong place........thank you for any help

  2. #2
    Join Date
    Aug 2004
    Location
    New York City
    Posts
    7,174
    Plugin Contributions
    0

    Default Re: invisible text

    Are you trying to remove the information in the top of the browser window?

    Look in includes/languages/english/YOUR_TEMPLATE/meta_tags.php (I used the original file for the example) for

    Code:
    <?php
    /**
     * @package languageDefines
     * @copyright Copyright 2003-2005 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: meta_tags.php 4273 2006-08-26 03:13:52Z drbyte $
     */
    
    // page title
    define('TITLE', 'Zen Cart!');
    
    // Site Tagline
    define('SITE_TAGLINE', 'The Art of E-commerce');
    and change it to


    Code:
    <?php
    /**
     * @package languageDefines
     * @copyright Copyright 2003-2005 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: meta_tags.php 4273 2006-08-26 03:13:52Z drbyte $
     */
    
    // page title
    define('TITLE', '');
    
    // Site Tagline
    define('SITE_TAGLINE', '');
    The '' are two single quotes, not a double quote.
    Mary Ellen
    I came; I saw; I Zenned
    Taking over the world... one website at a time
    Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.

    Holzheimer
    Fan Odyssey

  3. #3
    Join Date
    Apr 2008
    Posts
    4
    Plugin Contributions
    0

    Default Re: invisible text

    i didnt want to remove it from meta tag......i wanted to leave it there for search engine but wanted to know if you can turn text it self invisible..

  4. #4
    Join Date
    Aug 2004
    Location
    New York City
    Posts
    7,174
    Plugin Contributions
    0

    Default Re: invisible text

    I can't think of any way to do that.
    Mary Ellen
    I came; I saw; I Zenned
    Taking over the world... one website at a time
    Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.

    Holzheimer
    Fan Odyssey

  5. #5
    Join Date
    Apr 2008
    Posts
    4
    Plugin Contributions
    0

    Default Re: invisible text

    Method 2(b): Using "Visibility: Hidden" Style Commands

    An alternative to the method above is to simply use the built in features of style sheets to hide your text:

    .hideme {
    visibility : hidden;
    }............i just found this on web but way it make it sound like you might get booted from search engines.....maybe i should forget ideal.......thank you for your help

  6. #6
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: invisible text

    The title and tagline displayed in your header and the metatags are two different things.

    Look in /includes/languages/english/your_template/header.php for

    // 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');

    You can change to
    define('HEADER_SALES_TEXT', '');
    and
    define('HEADER_LOGO_IMAGE', 'pixel_trans.gif');

    You can redefine the 'HEADER_ALT_TEXT' also.

    The shop name is not displayed in the header; perhaps you were referring to the logo.

 

 

Similar Threads

  1. Text showing up invisible (white on white) on popup_shipping_estimator
    By rufusclc in forum Built-in Shipping and Payment Modules
    Replies: 4
    Last Post: 10 Sep 2012, 07:49 AM
  2. invisible attributes
    By Lackew in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 18 Sep 2009, 06:20 PM
  3. Text showing up invisible
    By ashton0603 in forum General Questions
    Replies: 5
    Last Post: 23 Feb 2008, 06:33 AM
  4. text invisible/disappears, also hover strange
    By catach in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 14 Dec 2006, 05:02 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