Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 45
  1. #21
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Background Colors

    Awww, I hate it when it shortens something like that. I shouldn't have copied the link, but just text, like this:
    http://digidollardays.net/store/incl...stylesheet.css

    Now you can see the full path without having to click on it.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  2. #22
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Background Colors

    Well, I guess not. Stupid editors!!!! Well, at least you CAN hover over the link, and see the full path down at the bottom of your browser.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  3. #23
    Join Date
    Apr 2007
    Posts
    59
    Plugin Contributions
    0

    Default Re: Background Colors

    Quote Originally Posted by Get Em Fast View Post
    Yea, I see that. At least you're closer than you were.
    It's calling the stylesheet from:
    http://digidollardays.net/store/incl...stylesheet.css


    Is that where yours is, or is it in Custom?
    Might try putting yours in the template_default, just for a min (you'll have to re-name the other one) just to see if it picks up correctly.

    Okay-it is /public_html/store/includes/templates/custom.

    The corrected stylesheet ONLY showed up when puttinh it in template_default. NOW my logo is missing and my Welcome Guest.

  4. #24
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Background Colors

    Yea, it looks like it's calling everything from the template_default folder.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  5. #25
    Join Date
    Apr 2007
    Posts
    59
    Plugin Contributions
    0

    Default Re: Background Colors

    Quote Originally Posted by Get Em Fast View Post
    Yea, it looks like it's calling everything from the template_default folder.

    So, I am assuming that because it is calling everything from the template default that is the reason why my logo isn't showing up:)

  6. #26
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Background Colors

    Yep. You can change this in, uh.........html_header (I think). Although, It should be calling from your custom template, when selected from the Admin.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  7. #27
    Join Date
    Apr 2007
    Posts
    59
    Plugin Contributions
    0

    Default Re: Background Colors

    Quote Originally Posted by Get Em Fast View Post
    Yep. You can change this in, uh.........html_header (I think). Although, It should be calling from your custom template, when selected from the Admin.
    I am lost looking at the html_header.

    Here is what it looks like...

    <?php
    /**
    * Common Template
    *
    * outputs the html header. i,e, everything that comes before the \</head\> tag <br />
    *
    * @package templateSystem
    * @copyright Copyright 2003-2006 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: html_header.php 4368 2006-09-03 19:31:00Z drbyte $
    */
    /**
    * load the module for generating page meta-tags
    */
    require(DIR_WS_MODULES . zen_get_module_directory('meta_tags.php'));
    /**
    * output main page HEAD tag and related headers/meta-tags, etc
    */
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" <?php echo HTML_PARAMS; ?>>
    <head>
    <title><?php echo META_TAG_TITLE; ?></title>
    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>" />
    <meta name="keywords" content="<?php echo META_TAG_KEYWORDS; ?>" />
    <meta name="description" content="<?php echo META_TAG_DESCRIPTION; ?>" />
    <meta http-equiv="imagetoolbar" content="no" />
    <meta name="author" content="The Zen Cart&trade; Team and others" />
    <meta name="generator" content="shopping cart program by Zen Cart&trade;, http://www.zen-cart.com eCommerce" />
    <?php if (defined('ROBOTS_PAGES_TO_SKIP') && in_array($current_page_base,explode(",",constant('ROBOTS_PAGES_TO_SKIP'))) || $current_page_base=='down_for_maintenance') { ?>
    <meta name="robots" content="noindex, nofollow" />
    <?php } ?>
    <?php if (defined('FAVICON')) { ?>
    <link rel="icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />
    <link rel="shortcut icon" href="<?php echo FAVICON; ?>" type="image/x-icon" />
    <?php } //endif FAVICON ?>
    <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG ); ?>" />
    <?php
    /**
    * load all template-specific stylesheets, named like "style*.css", alphabetically
    */
    $directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^style/', '.css');
    while(list ($key, $value) = each($directory_array)) {
    echo '<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . $value . '" />'."\n";
    }
    /**
    * load stylesheets on a per-page/per-language/per-product/per-manufacturer/per-category basis. Concept by Juxi Zoza.
    */
    $manufacturers_id = (isset($_GET['manufacturers_id'])) ? $_GET['manufacturers_id'] : '';
    $tmp_products_id = (isset($_GET['products_id'])) ? (int)$_GET['products_id'] : '';
    $tmp_pagename = ($this_is_home_page) ? 'index_home' : $current_page_base;
    $sheets_array = array('/' . $_SESSION['language'] . '_stylesheet',
    '/' . $tmp_pagename,
    '/' . $_SESSION['language'] . '_' . $tmp_pagename,
    '/c_' . $cPath,
    '/' . $_SESSION['language'] . '_c_' . $cPath,
    '/m_' . $manufacturers_id,
    '/' . $_SESSION['language'] . '_m_' . (int)$manufacturers_id,
    '/p_' . $tmp_products_id,
    '/' . $_SESSION['language'] . '_p_' . $tmp_products_id
    );
    while(list ($key, $value) = each($sheets_array)) {
    //echo "<!--looking for: $value-->\n";
    $perpagefile = $template->get_template_dir('.css', DIR_WS_TEMPLATE, $current_page_base, 'css') . $value . '.css';
    if (file_exists($perpagefile)) echo '<link rel="stylesheet" type="text/css" href="' . $perpagefile .'" />'."\n";
    }
    /**
    * load printer-friendly stylesheets -- named like "print*.css", alphabetically
    */
    $directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^print/', '.css');
    sort($directory_array);
    while(list ($key, $value) = each($directory_array)) {
    echo '<link rel="stylesheet" type="text/css" media="print" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . $value . '" />'."\n";
    }
    /**
    * load all site-wide jscript_*.js files from includes/templates/YOURTEMPLATE/jscript, alphabetically
    */
    $directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript'), '/^jscript_/', '.js');
    while(list ($key, $value) = each($directory_array)) {
    echo '<script type="text/javascript" src="' . $template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/' . $value . '"></script>'."\n";
    }
    /**
    * load all page-specific jscript_*.js files from includes/modules/pages/PAGENAME, alphabetically
    */
    $directory_array = $template->get_template_part($page_directory, '/^jscript_/', '.js');
    while(list ($key, $value) = each($directory_array)) {
    echo '<script type="text/javascript" src="' . $page_directory . '/' . $value . '"></script>' . "\n";
    }
    /**
    * load all site-wide jscript_*.php files from includes/templates/YOURTEMPLATE/jscript, alphabetically
    */
    $directory_array = $template->get_template_part($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'jscript'), '/^jscript_/', '.php');
    while(list ($key, $value) = each($directory_array)) {
    /**
    * include content from all site-wide jscript_*.php files from includes/templates/YOURTEMPLATE/jscript, alphabetically.
    * These .PHP files can be manipulated by PHP when they're called, and are copied in-full to the browser page
    */
    require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/' . $value); echo "\n";
    }
    /**
    * include content from all page-specific jscript_*.php files from includes/modules/pages/PAGENAME, alphabetically.
    */
    $directory_array = $template->get_template_part($page_directory, '/^jscript_/');
    while(list ($key, $value) = each($directory_array)) {
    /**
    * include content from all page-specific jscript_*.php files from includes/modules/pages/PAGENAME, alphabetically.
    * These .PHP files can be manipulated by PHP when they're called, and are copied in-full to the browser page
    */
    require($page_directory . '/' . $value); echo "\n";
    }
    //DEBUG: echo '<!-- I SEE cat: ' . $current_category_id . ' || vs cpath: ' . $cPath . ' || page: ' . $current_page . ' || template: ' . $current_template . ' || main = ' . ($this_is_home_page ? 'YES' : 'NO') . ' -->';
    ?>
    </head>
    <?php // NOTE: Blank line following is intended: ?>

  8. #28
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Background Colors

    Was your site fully completed before you "lost" it? I'm seeing stuff like Tag Line Here, HEADING_TITLE, and TEXT_GREETING_GUEST, which looks like there may be more problems than just that. Looks like there may be some corrupted files.
    By, any chance did you back up your site before the move?
    If so, you might want to compare some of those that's been mentioned here.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  9. #29
    Join Date
    Apr 2007
    Posts
    59
    Plugin Contributions
    0

    Default Re: Background Colors

    Quote Originally Posted by Get Em Fast View Post
    Was your site fully completed before you "lost" it? I'm seeing stuff like Tag Line Here, HEADING_TITLE, and TEXT_GREETING_GUEST, which looks like there may be more problems than just that. Looks like there may be some corrupted files.
    By, any chance did you back up your site before the move?
    If so, you might want to compare some of those that's been mentioned here.
    I never "lost" the site, I am a new zenner and am trying to get my store up and running, so that is probably why you are seeing stuff like Tag Line, Heading_Title,etc. I did have my logo.jpg image up as well as, my headling title and text greeting guest.

  10. #30
    Join Date
    Apr 2007
    Posts
    59
    Plugin Contributions
    0

    Default Re: Background Colors

    Okay- I finally got the site the way I want, BUT now I don't know how to change the text color in the following words: returning customers please log in, Company details, etc This text is currently blue.

    This is found on my login page. Go to http://digidollardays.net/store/inde...ain_page=login

    Any help would be appreciated:)

    TIA

 

 
Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. Registration Box Background Colors?
    By Sfrazier in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 16 Aug 2008, 08:38 AM
  2. Banner Box background colors
    By Zubey in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 21 Mar 2008, 03:21 PM
  3. Header & Footer background colors.
    By LM7 in forum Templates, Stylesheets, Page Layout
    Replies: 15
    Last Post: 2 May 2007, 09:54 PM
  4. Background colors
    By Moncia in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 7 Nov 2006, 07:10 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