Page 28 of 70 FirstFirst ... 18262728293038 ... LastLast
Results 271 to 280 of 691
  1. #271
    Join Date
    Jan 2006
    Posts
    1,542
    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 line of code: (around line 48)

    PHP Code:
        <div id="logo"><?php echo zen_image($template->get_template_dir(HEADER_LOGO_IMAGEDIR_WS_TEMPLATE$current_page_base,'images'). '/' HEADER_LOGO_IMAGEHEADER_ALT_TEXTHEADER_LOGO_WIDTHHEADER_LOGO_HEIGHT);?></div>
    and replace with this:

    PHP Code:
        <div id="logo"><?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '">' zen_image($template->get_template_dir(HEADER_LOGO_IMAGEDIR_WS_TEMPLATE$current_page_base,'images'). '/' HEADER_LOGO_IMAGEHEADER_ALT_TEXT) . '</a>'?></div>

    open includes/languages/cold_steel/english.php

    find the following line of code: (around line 17)

    PHP Code:
    define('TEMPLATE_DESIGN'TEMPLATE_NAME'Design by <a href="http://mysticmountainnaturals.com/testsite/" target="_blank">Clyde Jones</a>'); 
    and replace with

    PHP Code:
    define('TEMPLATE_DESIGN'TEMPLATE_NAME'Design by <a href="http://mysticmountainnaturals.com/demotest/" target="_blank">Clyde Jones</a>'); 
    Thanks!

    I just downloaded the Cold Steel from your site, with the tabs in the header. I also uploaded the star.gif fix.

    1. The Contact Us page still does not show the star pic (just says "star.gif" in red text.) It's fixed on the Login.
    http://www.catholic-view.com/ZenCart...age=contact_us

    2. Both Contact Us and Login show "=Required information" in red text. How does the star pic show before the = sign?
    http://www.catholic-view.com/ZenCart...ain_page=login

    Thanks.

    SPH

  2. #272
    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 SPH View Post
    Thanks!

    I just downloaded the Cold Steel from your site, with the tabs in the header. I also uploaded the star.gif fix.

    1. The Contact Us page still does not show the star pic (just says "star.gif" in red text.) It's fixed on the Login.
    http://www.catholic-view.com/ZenCart...age=contact_us

    2. Both Contact Us and Login show "=Required information" in red text. How does the star pic show before the = sign?
    http://www.catholic-view.com/ZenCart...ain_page=login

    Thanks.

    SPH

    open includes/languages/cold_steel/english.php

    find the following lines of code: (lines 278 - 279)

    PHP Code:
      define('FORM_REQUIRED_INFORMATION'' = Required information');
      
    define('ENTRY_REQUIRED_SYMBOL''star.gif'); 
    and replace with

    PHP Code:
      define('FORM_REQUIRED_INFORMATION''* = Required information');
      
    define('ENTRY_REQUIRED_SYMBOL'' *'); 

  3. #273
    Join Date
    Jan 2006
    Posts
    1,542
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by clydejones View Post
    open includes/languages/cold_steel/english.php

    find the following lines of code: (lines 278 - 279)

    PHP Code:
      define('FORM_REQUIRED_INFORMATION'' = Required information');
      
    define('ENTRY_REQUIRED_SYMBOL''star.gif'); 
    and replace with

    PHP Code:
      define('FORM_REQUIRED_INFORMATION''* = Required information');
      
    define('ENTRY_REQUIRED_SYMBOL'' *'); 
    Thanks!

  4. #274
    Join Date
    Feb 2007
    Posts
    77
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Hi Clyde,
    I was wondering how I would be able to change the color which shows the progress during checkout.
    I would like to change the orange color which is in the attached picture if you can help me out I would really appreciate it.
    Thanks in advance!
    Attached Images Attached Images  

  5. #275
    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 HelpMeSell View Post
    Hi Clyde,
    I was wondering how I would be able to change the color which shows the progress during checkout.
    I would like to change the orange color which is in the attached picture if you can help me out I would really appreciate it.
    Thanks in advance!
    You will need to create a new graphic for the numbers.

    You can use includes/templates/cold_steel/images/numbers.gif
    as an example.

    You will also need to change the following declarations in each of the following stylesheets. change the highlighted to the color of your choice

    checkout_shipping.css
    checkout_payment.css
    checkout_confirmation.css
    checkout_success.css

    .progressmeter li.current {color:#FF9900;font-weight:bold;background-position:0 -38px;}
    .progressmeter li.current.two {color:#FF9900;font-weight:bold;background-position:-142px -38px;}
    .progressmeter li.current.three {color:#FF9900;font-weight:bold;background-position:-280px -38px;}
    .progressmeter li.current.four {color:#FF9900;font-weight:bold;background-position:-422px -38px;}

  6. #276
    Join Date
    Feb 2007
    Posts
    77
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Quote Originally Posted by clydejones View Post
    You will need to create a new graphic for the numbers.

    You can use includes/templates/cold_steel/images/numbers.gif
    as an example.

    You will also need to change the following declarations in each of the following stylesheets. change the highlighted to the color of your choice

    checkout_shipping.css
    checkout_payment.css
    checkout_confirmation.css
    checkout_success.css

    .progressmeter li.current {color:#FF9900;font-weight:bold;background-position:0 -38px;}
    .progressmeter li.current.two {color:#FF9900;font-weight:bold;background-position:-142px -38px;}
    .progressmeter li.current.three {color:#FF9900;font-weight:bold;background-position:-280px -38px;}
    .progressmeter li.current.four {color:#FF9900;font-weight:bold;background-position:-422px -38px;}
    THANKS!!!!

    One more thing, I am trying to change a few things in the chekout page as well. I attached another picture.
    How would I put a border around the checkout box?
    Where do I adjust the background and font color for the upper part?

    Thanks again!

  7. #277
    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 HelpMeSell View Post
    THANKS!!!!

    One more thing, I am trying to change a few things in the chekout page as well. I attached another picture.
    How would I put a border around the checkout box?
    Where do I adjust the background and font color for the upper part?

    Thanks again!
    Picture???

  8. #278
    Join Date
    Feb 2007
    Posts
    77
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Sorry must of forgot to attach the file.
    Here you go.

    Thanks again!
    Attached Images Attached Images  

  9. #279
    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 HelpMeSell View Post
    THANKS!!!!

    One more thing, I am trying to change a few things in the chekout page as well. I attached another picture.
    How would I put a border around the checkout box?
    Where do I adjust the background and font color for the upper part?

    Thanks again!
    open includes/templates/cold_steel/css/stylesheet.css

    find the following declarations and change as desired

    .productListing-rowheading, tr.tableHeading {
    background: url(../images/tile_back.gif);
    height: 2em;
    color: #814639;
    }

    .rowOdd {
    height: 1.5em;
    vertical-align: top;
    border:1px solid #000;
    }
    .rowEven {
    background-color: #f8f8f8;
    height: 1.5em;
    vertical-align: top;
    border:1px solid #000;
    }

  10. #280
    Join Date
    Feb 2007
    Posts
    77
    Plugin Contributions
    0

    Default Re: Cold Steel Template Support Thread

    Hi Clyde,
    Thanks for the help, I managed to change the color of the text and edit the color of the background but when I added the lines to get the border, I got them at where I put the red arrows in the attached picture.
    Where I wanted them was the black part if thats possible??
    Thank you!!!

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

    find the following declarations and change as desired

    .productListing-rowheading, tr.tableHeading {
    background: url(../images/tile_back.gif);
    height: 2em;
    color: #814639;
    }

    .rowOdd {
    height: 1.5em;
    vertical-align: top;
    border:1px solid #000;
    }
    .rowEven {
    background-color: #f8f8f8;
    height: 1.5em;
    vertical-align: top;
    border:1px solid #000;
    }
    Attached Images Attached Images  

 

 
Page 28 of 70 FirstFirst ... 18262728293038 ... 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