Page 38 of 70 FirstFirst ... 28363738394048 ... LastLast
Results 371 to 380 of 691
  1. #371
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by andreitero View Post
    Ah thanks a lot clyde i done exactly what u said and it was a silly typo.
    I have one more question:
    as most of the buttons in the navbar are now covered by the flyout menu, im thinking to remove the 'doubles' from the navbar and add some best selling categories of my choice. How do u think i should do that?
    Cheers!
    open includes/templates/cold_steel/common/tpl_header.php

    find the following section of code; comment out the menu items you don't want and add new items as desired. follow the same <li> </li> pattern for your new items.
    PHP Code:
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
        <ul>
        <li<?php echo (($this_is_home_page) ? ' class="current">' '>');?><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo '<span>' HEADER_TITLE_CATALOG '</span>'?></a></li>
    <?php if ($_SESSION['customer_id']) { ?>
        <li<?php echo (($current_page_base == 'logoff') ? ' class="current">' '>');?><a href="<?php echo zen_href_link(FILENAME_LOGOFF'''SSL'); ?>"><?php echo '<span>' HEADER_TITLE_LOGOFF '</span>'?></a></li>
    <?php
          
    } else {
            if (
    STORE_STATUS == '0') {
    ?>
        <li<?php echo (($current_page_base == 'login') ? ' class="current">' '>');?><a href="<?php echo zen_href_link(FILENAME_LOGIN'''SSL'); ?>"><?php echo '<span>' HEADER_TITLE_LOGIN '</span>'?></a></li>
    <?php } } ?>
    <li<?php echo (($current_page_base == 'contact_us') ? ' class="current">' '>');?><a href="<?php echo zen_href_link(FILENAME_CONTACT_US'''SSL'); ?>"><?php echo '<span>' BOX_INFORMATION_CONTACT '</span>'?></a></li>
        <li<?php echo (($current_page_base == 'account') ? ' class="current">' '>');?><a href="<?php echo zen_href_link(FILENAME_ACCOUNT'''SSL'); ?>"><?php echo '<span>' HEADER_TITLE_MY_ACCOUNT '</span>'?></a></li>
    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
        <li<?php echo ((in_array($current_page_base,explode(",",'checkout_shipping,checkout_payment,checkout_confirmation,checkout_success'))) ? ' class="current">' '>');?><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING'''SSL'); ?>"><?php echo '<span>' HEADER_TITLE_CHECKOUT '</span>'?></a></li>
    <?php }?>
        <li<?php echo (($current_page_base == 'shopping_cart') ? ' class="current">' ' class="cart">');?><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART'''NONSSL'); ?>"><?php echo '<span>' HEADER_TITLE_CART_CONTENTS '</span>'?></a></li>
    </ul>
    </div>
    </div>
    <!--eof-navigation display-->

  2. #372
    Join Date
    Dec 2009
    Posts
    204
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by clydejones View Post
    open includes/templates/cold_steel/common/tpl_header.php

    find the following section of code; comment out the menu items you don't want and add new items as desired. follow the same <li> </li> pattern for your new items.
    PHP Code:
    <!--bof-navigation display-->
    <div id="navMainWrapper">
    <div id="navMain">
        <ul>
        <li<?php echo (($this_is_home_page) ? ' class="current">' '>');?><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">'?><?php echo '<span>' HEADER_TITLE_CATALOG '</span>'?></a></li>
    <?php if ($_SESSION['customer_id']) { ?>
        <li<?php echo (($current_page_base == 'logoff') ? ' class="current">' '>');?><a href="<?php echo zen_href_link(FILENAME_LOGOFF'''SSL'); ?>"><?php echo '<span>' HEADER_TITLE_LOGOFF '</span>'?></a></li>
    <?php
          
    } else {
            if (
    STORE_STATUS == '0') {
    ?>
        <li<?php echo (($current_page_base == 'login') ? ' class="current">' '>');?><a href="<?php echo zen_href_link(FILENAME_LOGIN'''SSL'); ?>"><?php echo '<span>' HEADER_TITLE_LOGIN '</span>'?></a></li>
    <?php } } ?>
    <li<?php echo (($current_page_base == 'contact_us') ? ' class="current">' '>');?><a href="<?php echo zen_href_link(FILENAME_CONTACT_US'''SSL'); ?>"><?php echo '<span>' BOX_INFORMATION_CONTACT '</span>'?></a></li>
        <li<?php echo (($current_page_base == 'account') ? ' class="current">' '>');?><a href="<?php echo zen_href_link(FILENAME_ACCOUNT'''SSL'); ?>"><?php echo '<span>' HEADER_TITLE_MY_ACCOUNT '</span>'?></a></li>
    <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
        <li<?php echo ((in_array($current_page_base,explode(",",'checkout_shipping,checkout_payment,checkout_confirmation,checkout_success'))) ? ' class="current">' '>');?><a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING'''SSL'); ?>"><?php echo '<span>' HEADER_TITLE_CHECKOUT '</span>'?></a></li>
    <?php }?>
        <li<?php echo (($current_page_base == 'shopping_cart') ? ' class="current">' ' class="cart">');?><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART'''NONSSL'); ?>"><?php echo '<span>' HEADER_TITLE_CART_CONTENTS '</span>'?></a></li>
    </ul>
    </div>
    </div>
    <!--eof-navigation display-->
    Ah thanks a lot, i appreciate it!

  3. #373
    Join Date
    Apr 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Hi there,
    I am customizing the Cold Steel template and am currently working on the Category menu inthe laft column.
    I am trying to do the following:
    (a) remove the "|_" from the subcategory listings
    (b) need to change the colors.

    Can you point me in the right direction for these two items?
    Thansk
    Nett

  4. #374
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by technett View Post
    Hi there,
    I am customizing the Cold Steel template and am currently working on the Category menu inthe laft column.
    I am trying to do the following:
    (a) remove the "|_" from the subcategory listings
    (b) need to change the colors.

    Can you point me in the right direction for these two items?
    Thansk
    Nett
    admin -> configuration -> layout settings

    Categories Separator between the Category Name and Count
    Categories Separator between the Category Name and Sub Categories
    Categories Count Prefix
    Categories Count Suffix
    Categories SubCategories Indent

    includes/templates/cold_steel/css/stylesheet_betterCategoriesEzInfo.css

  5. #375
    Join Date
    Apr 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Thanks Clyde!
    Is there a way to have the categories one color and the subcategories another color?

    Thanks,
    Nett

  6. #376
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by technett View Post
    Thanks Clyde!
    Is there a way to have the categories one color and the subcategories another color?

    Thanks,
    Nett
    You can try adding this to the stylesheet. change the highlighted portion as desired

    .betterCategories .category-subs-parent a, .betterCategories .category-subs-parent a:visited,
    .betterDocuments .category-subs-parent a, .betterDocuments .category-subs-parent a:visited,
    .betterEzpages .category-subs-parent a, .betterEzpages .category-subs-parent a:visited,
    .betterInformation .category-subs-parent a, .betterInformation .category-subs-parent a:visited,
    .betterMoreinformation .category-subs-parent a, .betterMoreinformation .category-subs-parent a:visited,
    .betterBestsellers .category-subs-parent a, .betterBestsellers .category-subs-parent a:visited {
    display: block;
    background-color: #fff;
    border-top: 1px solid #DFDFDF;
    padding: 0.4em;
    }

  7. #377
    Join Date
    Feb 2010
    Posts
    19
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Hello, I want to remove all buttons from the shopping cart such as next, previous, add to cart, etc and have only text.

  8. #378
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by jeremiah View Post
    Hello, I want to remove all buttons from the shopping cart such as next, previous, add to cart, etc and have only text.
    This is not a template specific question.

    People visiting your site may find that a bit confusing since most people using an e-commerce site expect to see/use buttons to navigate through the cart.

    If you don't want buttons just delete the buttons folder completely.

    includes/templates/cold_steel/buttons

  9. #379
    Join Date
    Apr 2008
    Posts
    13
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by clydejones View Post
    You can try adding this to the stylesheet. change the highlighted portion as desired

    .betterCategories .category-subs-parent a, .betterCategories .category-subs-parent a:visited,
    .betterDocuments .category-subs-parent a, .betterDocuments .category-subs-parent a:visited,
    .betterEzpages .category-subs-parent a, .betterEzpages .category-subs-parent a:visited,
    .betterInformation .category-subs-parent a, .betterInformation .category-subs-parent a:visited,
    .betterMoreinformation .category-subs-parent a, .betterMoreinformation .category-subs-parent a:visited,
    .betterBestsellers .category-subs-parent a, .betterBestsellers .category-subs-parent a:visited {
    display: block;
    background-color: #fff;
    border-top: 1px solid #DFDFDF;
    padding: 0.4em;
    }
    I added this and didn't change the subcategory colors.
    However, I moved this to its own section and changed the color for the whole menu:
    .betterCategories a, .betterCategories a:visited {
    color: #FF0000;
    }
    My Goal is to get the category titles to Red and the subcategories to Blue.

    Thanks for your help.
    Nett

  10. #380
    Join Date
    Dec 2009
    Posts
    204
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    I have installed the ultimate seo url's from here to my website: lemy.co.uk and now its messed up except the homepage. I respected the instructions as best i could, but i was a little unclear about the .htaccss modifications. Is there any reason it would behave like this? Thanks!

 

 
Page 38 of 70 FirstFirst ... 28363738394048 ... LastLast

Similar Threads

  1. Responsive Cold Steel Template for v1.5.x
    By rbarbour in forum Addon Templates
    Replies: 38
    Last Post: 29 May 2017, 03:12 AM
  2. v150 Cold Steel Template
    By Sniper in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 11 Aug 2012, 06:25 PM
  3. v150 Ice Cold Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 5
    Last Post: 23 Jun 2012, 08:02 PM
  4. Cold Steel Template - fatal error
    By itseemedsosimple in forum Addon Templates
    Replies: 2
    Last Post: 1 Mar 2011, 12:46 AM
  5. Attribute Alignment Problem Cold Steel Template
    By CascianoLtd in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 25 Sep 2009, 05:54 AM

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