Page 37 of 70 FirstFirst ... 27353637383947 ... LastLast
Results 361 to 370 of 691
  1. #361
    Join Date
    Apr 2009
    Location
    Back in Toronto
    Posts
    19
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by clydejones View Post
    This article in the Tutorials/FAQ section may help;

    article=135
    Thank You!

    I must of missed something last night in my efforts to resolve the "image path showing up as well" in the Categories Content header.

    Thanks Again Clyde

  2. #362
    Join Date
    Feb 2010
    Posts
    71
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by clydejones View Post
    open includes/templates/cold_steel/css/stylesheet.css

    find the follwoing declaration and delete the highlighted portion

    #productDescription ul li {
    margin-right:2px;
    padding:2px 0 2px 17px;
    list-style: none;
    font-size: 1.1em;
    }
    Thanks for the very fast support. Thanks that worked. The font size of the bulleted items is now larger than the text in the body of the description is there a way to make it the same size?

  3. #363
    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 Liamv View Post
    Thanks for the very fast support. Thanks that worked. The font size of the bulleted items is now larger than the text in the body of the description is there a way to make it the same size?
    remove the font-size rule:

    #productDescription ul li {
    margin-right:2px;
    padding:2px 0 2px 17px;
    list-style: none;
    font-size: 1.1em;
    }

  4. #364
    Join Date
    Dec 2009
    Posts
    204
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Hi Clyde im using this template for my new website: lemy.co.uk and it looks great...but i would like my customers to navigate better so im trying to install the CSS Flyout menu 1.5 from here:
    http://www.zen-cart.com/forum/showthread.php?t=58629
    The problem is that the tpl_header from the cold_steel template is modified so in this case its says there in the readme that i should add this code to the tpl_header :
    PHP Code:
    <!--bof-drop down menu display-->
    <?php require($template->get_template_dir('tpl_drop_menu.php',DIR_WS_TEMPLATE$current_page_base,'common'). '/tpl_drop_menu.php');?>
    <!--eof-drop down menu display-->
    <div class="clearBoth"></div>
    I've done this and i double check the installation and site is messed up. Is there any way that i can integrate the flyout menu into your template?


    Also i would like to know how to add a few extra buttons in the navbar for the rss feed,etc, like you have on you website.
    Cheers!

  5. #365
    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
    Hi Clyde im using this template for my new website: lemy.co.uk and it looks great...but i would like my customers to navigate better so im trying to install the CSS Flyout menu 1.5 from here:
    http://www.zen-cart.com/forum/showthread.php?t=58629
    The problem is that the tpl_header from the cold_steel template is modified so in this case its says there in the readme that i should add this code to the tpl_header :
    PHP Code:
    <!--bof-drop down menu display-->
    <?php require($template->get_template_dir('tpl_drop_menu.php',DIR_WS_TEMPLATE$current_page_base,'common'). '/tpl_drop_menu.php');?>
    <!--eof-drop down menu display-->
    <div class="clearBoth"></div>
    I've done this and i double check the installation and site is messed up. Is there any way that i can integrate the flyout menu into your template?


    Also i would like to know how to add a few extra buttons in the navbar for the rss feed,etc, like you have on you website.
    Cheers!
    Where do you want the menu to go?

  6. #366
    Join Date
    Dec 2009
    Posts
    204
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by clydejones View Post
    Where do you want the menu to go?
    Thanks for the quick reply. I want it positioned just bellow the NavBreadCrumb, about 0.5 em distance from it.

  7. #367
    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
    Thanks for the quick reply. I want it positioned just bellow the NavBreadCrumb, about 0.5 em distance from it.
    open includes/templates/cold_steel/common/tpl_main_page.php

    find the following section of code:

    PHP Code:
    <!-- bof  breadcrumb -->
    <?php if (DEFINE_BREADCRUMB_STATUS == '1' || (DEFINE_BREADCRUMB_STATUS == '2' && !$this_is_home_page) ) { ?>
        <div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
    <?php ?>
    <!-- eof breadcrumb -->
    just below this add the folllowing:

    PHP Code:
    <!--bof-drop down menu display-->
    <?php require($template->get_template_dir('tpl_drop_menu.php',DIR_WS_TEMPLATE$current_page_base,'common'). '/tpl_drop_menu.php');?>
    <!--eof-drop down menu display-->
    <div class="clearBoth"></div>

  8. #368
    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_main_page.php

    find the following section of code:

    PHP Code:
    <!-- bof  breadcrumb -->
    <?php if (DEFINE_BREADCRUMB_STATUS == '1' || (DEFINE_BREADCRUMB_STATUS == '2' && !$this_is_home_page) ) { ?>
        <div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
    <?php ?>
    <!-- eof breadcrumb -->
    just below this add the folllowing:

    PHP Code:
    <!--bof-drop down menu display-->
    <?php require($template->get_template_dir('tpl_drop_menu.php',DIR_WS_TEMPLATE$current_page_base,'common'). '/tpl_drop_menu.php');?>
    <!--eof-drop down menu display-->
    <div class="clearBoth"></div>
    I have done that, but doesnt seem to work... you can look at it now:
    www.lemy.co.uk
    i think its interfering with the navbar from the template

  9. #369
    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
    I have done that, but doesnt seem to work... you can look at it now:
    www.lemy.co.uk
    i think its interfering with the navbar from the template
    I just did this same thing on my test site and everything works as expected.

    have you uploaded all the files for the menu mod.

    also download and install the Debug Error Logging Utility available in the downloads section.

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

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by clydejones View Post
    I just did this same thing on my test site and everything works as expected.

    have you uploaded all the files for the menu mod.

    also download and install the Debug Error Logging Utility available in the downloads section.
    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!

 

 
Page 37 of 70 FirstFirst ... 27353637383947 ... 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