Page 197 of 227 FirstFirst ... 97147187195196197198199207 ... LastLast
Results 1,961 to 1,970 of 2267
  1. #1961
    Join Date
    Dec 2011
    Posts
    19
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Is it possible to do the following:


    On the top level I will have a vehicles category and and under this a list of makes and models.

    I would like to display only makes or models (not decided yet) on this sidebox and keep the standard one with all categories. I can copy the required standard one so that shouldnt be an issue.

    It's just the required config to display only x that i'm struggling with.

    Any help much appreciated.

  2. #1962
    Join Date
    Dec 2011
    Posts
    19
    Plugin Contributions
    0

    Default Re: Categories Dressing

    I have managed to get the original category working under the normal Categories heading as shown here:
    http://www.rstuning.co.uk/zentest/index.php

    The Vehicles sidebox is the Categories Dressing sidebox with pretty much default config.

    Fingers crossed this will work

  3. #1963
    Join Date
    Feb 2004
    Posts
    1,278
    Plugin Contributions
    0

    Default Re: Categories Dressing

    I am having a very odd problem that is driving me NUTS!

    http://www.allforyourwedding.com/

    bullet1.gif will not go away!

    I changed

    bullet2.gif to blank, bullet3 and as you can see cathover is now
    white...

    I tried clearing my browsers cache,
    I searched the entire directory for other instances of bullet1

    I re-wrote, deleted the file....

    I cant get my head around this...

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

    Default Re: Categories Dressing

    Your Template Monster template used a background image for the list marker, and its rule still applies to the Cat Dressing items regardless of list-item styling:

    stylesheet_boxes.css (line 83)

    #categories li {
    background: url("../images/list_background1.gif") no-repeat scroll 0 7px transparent;
    color: #0562A9;
    font-size: 12px;
    font-weight: normal;
    line-height: 16px;
    padding-left: 0;
    text-decoration: none;
    }

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

    Default Re: Categories Dressing

    pmurray - Sorry, didn't see your post earlier. For the "Vehicles" sidebox, you can define a category group for category 75 (Vehicles), and add to your stylesheet

    #vehicles #catGroup67 {display: none;}

    to hide all other top categories.
    There is no such ability with the other sidebox, but if you install the ch_categories option bundled with Categories Dressing, you can enable the chcategories sidebox and use a rule

    #chcategories #catGroup75 {display: none;}

    to hide the Vehicles top cat in that box.

    It's not entirely clear from looking at your site which elements you are currently using, so this advice may need a little tweaking.

  6. #1966
    Join Date
    May 2011
    Posts
    67
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Hello,

    I'm using the CSS flyout menu for my sidebox categories.

    I'm trying to style individual categories. For example, one category is "flame-resistant". I'd like to give it an orange background.

    I've tried the instructions in the tpl_categories.php about styling individual categories, but I didn't see any changes. I assume it's because of the CSS flyout menu in place?
    Here is my tpl_categories.php :
    ################################################################################ ##########_
    <?php
    /**
    * Side Box Template
    *
    * @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: tpl_categories.php 4162 2006-08-17 03:55:02Z ajeh $
    */
    $content = "";

    $content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">' . "\n";
    for ($i=0;$i<sizeof($box_categories_array);$i++) {
    switch(true) {
    // to make a specific category stand out define a new class in the stylesheet example: A.category-holiday
    // uncomment the select below and set the cPath=3 to the cPath= your_categories_id
    // many variations of this can be done
    case ($box_categories_array[$i]['path'] == 'cPath=4'):
    $new_style = 'category-flame';
    break;
    case ($box_categories_array[$i]['top'] == 'true'):
    $new_style = 'category-top';
    break;
    case ($box_categories_array[$i]['has_sub_cat']):
    $new_style = 'category-subs';
    break;
    default:
    $new_style = 'category-products';
    }
    if (zen_get_product_types_to_category($box_categories_array[$i]['path']) == 3 or ($box_categories_array[$i]['top'] != 'true' and SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS != 1)) {
    // skip if this is for the document box (==3)
    } else {
    $content .= '<a class="' . $new_style . '" href="' . zen_href_link(FILENAME_DEFAULT, $box_categories_array[$i]['path']) . '">';

    if ($box_categories_array[$i]['current']) {
    if ($box_categories_array[$i]['has_sub_cat']) {
    $content .= '<span class="category-subs-parent">' . $box_categories_array[$i]['name'] . '</span>';
    } else {
    $content .= '<span class="category-subs-selected">' . $box_categories_array[$i]['name'] . '</span>';
    }
    } else {
    $content .= $box_categories_array[$i]['name'];
    }

    if ($box_categories_array[$i]['has_sub_cat']) {
    $content .= CATEGORIES_SEPARATOR;
    }
    $content .= '</a>';

    if (SHOW_COUNTS == 'true') {
    if ((CATEGORIES_COUNT_ZERO == '1' and $box_categories_array[$i]['count'] == 0) or $box_categories_array[$i]['count'] >= 1) {
    $content .= CATEGORIES_COUNT_PREFIX . $box_categories_array[$i]['count'] . CATEGORIES_COUNT_SUFFIX;
    }
    }

    $content .= '<br />' . "\n";
    }
    }

    if (SHOW_CATEGORIES_BOX_SPECIALS == 'true' or SHOW_CATEGORIES_BOX_PRODUCTS_NEW == 'true' or SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS == 'true' or SHOW_CATEGORIES_BOX_PRODUCTS_ALL == 'true') {
    // display a separator between categories and links
    if (SHOW_CATEGORIES_SEPARATOR_LINK == '1') {
    $content .= '<hr id="catBoxDivider" />' . "\n";
    }
    if (SHOW_CATEGORIES_BOX_SPECIALS == 'true') {
    $show_this = $db->Execute("select s.products_id from " . TABLE_SPECIALS . " s where s.status= 1 limit 1");
    if ($show_this->RecordCount() > 0) {
    $content .= '<a class="category-links" href="' . zen_href_link(FILENAME_SPECIALS) . '">' . CATEGORIES_BOX_HEADING_SPECIALS . '</a>' . '<br />' . "\n";
    }
    }
    if (SHOW_CATEGORIES_BOX_PRODUCTS_NEW == 'true') {
    // display limits
    // $display_limit = zen_get_products_new_timelimit();
    $display_limit = zen_get_new_date_range();

    $show_this = $db->Execute("select p.products_id
    from " . TABLE_PRODUCTS . " p
    where p.products_status = 1 " . $display_limit . " limit 1");
    if ($show_this->RecordCount() > 0) {
    $content .= '<a class="category-links" href="' . zen_href_link(FILENAME_PRODUCTS_NEW) . '">' . CATEGORIES_BOX_HEADING_WHATS_NEW . '</a>' . '<br />' . "\n";
    }
    }
    if (SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS == 'true') {
    $show_this = $db->Execute("select products_id from " . TABLE_FEATURED . " where status= 1 limit 1");
    if ($show_this->RecordCount() > 0) {
    $content .= '<a class="category-links" href="' . zen_href_link(FILENAME_FEATURED_PRODUCTS) . '">' . CATEGORIES_BOX_HEADING_FEATURED_PRODUCTS . '</a>' . '<br />' . "\n";
    }
    }
    if (SHOW_CATEGORIES_BOX_PRODUCTS_ALL == 'true') {
    $content .= '<a class="category-links" href="' . zen_href_link(FILENAME_PRODUCTS_ALL) . '">' . CATEGORIES_BOX_HEADING_PRODUCTS_ALL . '</a>' . "\n";
    }
    }
    $content .= '</div>';
    ?>

    ################################################################################ ##########____

    And here is my tpl_categories_css.php for the flyout menu:

    ################################################################################ ##########_
    <?php
    //
    // +----------------------------------------------------------------------+
    // |zen-cart Open Source E-commerce |
    // +----------------------------------------------------------------------+
    // | Copyright (c) 2003 The zen-cart developers |
    // | |
    // | http://www.zen-cart.com/index.php |
    // | |
    // | Portions Copyright (c) 2003 osCommerce |
    // +----------------------------------------------------------------------+
    // | This source file is subject to version 2.0 of the GPL license, |
    // | that is bundled with this package in the file LICENSE, and is |
    // | available through the world-wide-web at the following url: |
    // | http://www.zen-cart.com/license/2_0.txt. |
    // | If you did not receive a copy of the zen-cart license and are unable |
    // | to obtain it through the world-wide-web, please send a note to |
    // | [email protected] so we can mail you a copy immediately. |
    // +----------------------------------------------------------------------+
    // $Id: tpl_categories_css.php 2004/06/23 00:00:00 DrByteZen Exp $
    //
    $content = "";

    $content .= '<div id="nav-cat">';
    $content .= $menulist; // see the modules/sideboxes/YOURTEMPLATE/categories_css.php for this

    if (SHOW_CATEGORIES_BOX_SPECIALS == 'true' or SHOW_CATEGORIES_BOX_PRODUCTS_ALL == 'true'){
    $content .= ''; // insert a blank line/box in the menu
    if (SHOW_CATEGORIES_BOX_SPECIALS == 'true') {
    $content .= '<ul class="level1"><li><a href="' . zen_href_link(FILENAME_SPECIALS) . '">' . CATEGORIES_BOX_HEADING_SPECIALS . '</a></li></ul>';
    }
    if (SHOW_CATEGORIES_BOX_PRODUCTS_NEW == 'true') {
    $content .= '<ul class="level1"><li><a href="' . zen_href_link(FILENAME_PRODUCTS_NEW) . '">' . CATEGORIES_BOX_HEADING_WHATS_NEW . '</a></li></ul>';
    }
    if (SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS == 'true') {
    $show_this = $db->Execute("select products_id from " . TABLE_FEATURED . " where status= 1 limit 1");
    if ($show_this->RecordCount() > 0) {
    $content .= '<ul class="level1"><li><a href="' . zen_href_link(FILENAME_FEATURED_PRODUCTS) . '">' . CATEGORIES_BOX_HEADING_FEATURED_PRODUCTS . '</a></li></ul>';
    }
    }
    if (SHOW_CATEGORIES_BOX_PRODUCTS_ALL == 'true') {
    $content .= '<ul class="level1"><li><a href="' . zen_href_link(FILENAME_PRODUCTS_ALL) . '">' . CATEGORIES_BOX_HEADING_PRODUCTS_ALL . '</a></li></ul>';
    }
    }
    $content .= '</div>';
    // May want to add ............onfocus="this.blur()"...... to each A HREF to get rid of the dotted-box around links when they're clicked.
    // just parse the $content string and insert it into each A HREF tag

    ?>
    ################################################################################ ##########___


    I'm wondering whether it's possible to incorporate code from tpl_categories.php into tpl_categories_css.php to allow for individual styles for categories.

    If so, could anybody show me how to do so? Am I even on the right track?

    I hope I'm making sense, I'm still very new to zencart but am loving it!

    By the way, I'm using zencart 1.3.9 and my website is imuniforms.com.

    Thanks!

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

    Default Re: Categories Dressing

    This question as stated is not related to Categories Dressing in any way, as you are trying to put code from the stock categories sidebox into the flyout categories sidebox.

    However, Categories Dressing can be styled as a flyout menu, and can be given a unique background for one category, by following directions in its readme and in more recent posts in this support thread.

  8. #1968
    Join Date
    May 2011
    Posts
    67
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Woops. OK.

    Thanks for your reply.

  9. #1969
    Join Date
    May 2011
    Posts
    67
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Hello Glenn,

    I have installed the categories dressing module.

    I've been able to make my menu fly out. However, I've tried modifying the CSS to reflect at least the font colors and backgrounds of my previous flyout menu.

    I don't really know what I'm doing because these changes didn't do anything. Am I missing something simple?

    Here is my website: http://n13967.com/imjen/

    My goal is to make the bottom menu (the categories dressing menu) look as close as possible to the flyout menu above it. Except, of course, I'd like to have the Flame Resistant category and others to come beneath it, to be separated from the top categories and having a different background color. Essentially, two different menus.

    Is it possible to achieve the look I want, and could you point me in the right direction?

    Thanks for all the replies and help you've given throughout this forum.

    Any advice you can give me is greatly appreciated!

    Thanks,

    StillANewZenner

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

    Default Re: Categories Dressing

    The first problem you have is that your stylesheet_chcategories_dressing.css is actually a personalized copy of stylesheet_categories_dressing.css renamed, and because all of the rules start with #categories instead of #chcategories, none of them apply to your sidebox. I'm not sure where that file came from, but you need the correct standard version to start with. The correct stylesheet_chcategories_dressing.css is packaged in the Categories Dressing zip (ch_category folder).

    I see that you have started to define the category group for category 4 Flame Resistant and following; you need to correct the define for that, as there are unwanted heading elements showing.

    You can definitely replicate the style of the flyout menu. Once you have the basics in place, some of the flyout stylesheet rule declarations can be adapted to Categories Dressing.

 

 

Similar Threads

  1. categories dressing
    By fw541c in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 19 Nov 2010, 09:29 PM
  2. Categories Dressing
    By wotnow in forum Addon Sideboxes
    Replies: 10
    Last Post: 7 Apr 2010, 03:06 AM
  3. Categories Dressing issue
    By Maynards in forum Addon Sideboxes
    Replies: 0
    Last Post: 13 Mar 2010, 10:51 PM
  4. Categories Dressing
    By Maynards in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 12 Mar 2010, 11:05 PM
  5. Categories Dressing
    By PGlad in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 7 Aug 2007, 07:05 PM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR