Page 2 of 4 FirstFirst 1234 LastLast
Results 11 to 20 of 39
  1. #11
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Responsive Cold Steel Template

    Quote Originally Posted by picaflor-azul View Post
    I am happy that you figured it out ;)

    Thanks,

    Anne
    Thank you Anne!
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  2. #12
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,930
    Plugin Contributions
    45

    Default Re: Responsive Cold Steel Template

    Quote Originally Posted by rbarbour View Post
    Thank you Anne!
    No problem ;)

    Thanks,

    Anne

  3. #13
    Join Date
    Apr 2010
    Posts
    262
    Plugin Contributions
    1

    Default Re: Responsive Cold Steel Template

    I just removed my old cold steel, and installed this one. First, my tpl_absolute links no longer works, so I had to disable it.
    [27-Oct-2013 09:49:04] PHP Fatal error: require() [<a href='function.require'>function.require</a>]: Failed opening required 'includes/templates/template_default/sideboxes/tpl_absolute_links.php' (include_path='.:/usr/lib64/php:/usr/share/pear') in /home2/redsauto/public_html/includes/modules/sideboxes/absolute_links.php on line 16
    Second, I don't see:admin--configuration--layout settings
    Under configuration, the only one that I see, is: ACTIVATE Responsive Template by selecting Column Widths
    When I change any of the settings in the column widths, my main page information loads at the bottom of the page.

  4. #14
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Responsive Cold Steel Template

    Quote Originally Posted by vanhorn_s View Post
    I just removed my old cold steel, and installed this one. First, my tpl_absolute links no longer works, so I had to disable it.
    This must be a custom side box, it is not part of the original or responsive install.

    Quote Originally Posted by vanhorn_s View Post
    Second, I don't see:admin--configuration--layout settings
    Under configuration, the only one that I see, is: ACTIVATE Responsive Template by selecting Column Widths
    When I change any of the settings in the column widths, my main page information loads at the bottom of the page.
    ADMIN (YOUR ACTUAL ADMIN) > CONFIGURATION (usually first link in your admin drop-down menu) > Layout Settings (is a link under configuration)

    I am not sure what you don't see.

    If your main content loads towards the bottom - this usually indicated an extra div or unclosed div somewhere in your HTML source.

    A link to your site would help me better troubleshoot the issues you are having.
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  5. #15
    Join Date
    Apr 2010
    Posts
    262
    Plugin Contributions
    1

    Default Re: Responsive Cold Steel Template

    I am sorry, I am very tired right now, and I was in Layout settings.
    I just set it to 75px, so that you can see what it is doing.


    www.redsautorehab.com

  6. #16
    Join Date
    Apr 2010
    Posts
    262
    Plugin Contributions
    1

    Default Re: Responsive Cold Steel Template

    Also, my header image no longer loads. I used winmerge to copy the changes I have made, and my header image used to work with:
    Code:
    // added defines for header alt and text
    define('HEADER_ALT_TEXT', 'redsautorehab');
    define('HEADER_SALES_TEXT', '');
    define('HEADER_LOGO_WIDTH', '');
    define('HEADER_LOGO_HEIGHT', '');
    define('HEADER_LOGO_IMAGE', '32ford.jpg');
    Right now, includes/languages/english/cold_steel/header.php is identical to the old one, and that is the only change I made.
    I beleive that I need to set the height, and width, I am just not sure why it was working before.

  7. #17
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Responsive Cold Steel Template

    Quote Originally Posted by vanhorn_s View Post
    I am sorry, I am very tired right now, and I was in Layout settings.
    I just set it to 75px, so that you can see what it is doing.


    www.redsautorehab.com
    That is common with the responsive code:

    It looks like you have an extra closing div (</div>) in tpl_main_page.php

    Should be somewhere around here in that file:

    PHP Code:
    <div class="<?php echo $column_width_span?>">
    <?php
     
    /**
      * prepares and displays left column sideboxes
      *
      */
    ?>
    <?php 
    require(DIR_WS_MODULES zen_get_module_directory('column_left.php')); ?>
    </div>
    <?php
    }
    ?>
    Viewing your HTML source (I use FF) left click anywhere on your screen and click the View Page Source link

    You will see that extra closing </div>
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  8. #18
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Responsive Cold Steel Template

    Quote Originally Posted by vanhorn_s View Post
    Also, my header image no longer loads. I used winmerge to copy the changes I have made, and my header image used to work with:
    Code:
    // added defines for header alt and text
    define('HEADER_ALT_TEXT', 'redsautorehab');
    define('HEADER_SALES_TEXT', '');
    define('HEADER_LOGO_WIDTH', '');
    define('HEADER_LOGO_HEIGHT', '');
    define('HEADER_LOGO_IMAGE', '32ford.jpg');
    Right now, includes/languages/english/cold_steel/header.php is identical to the old one, and that is the only change I made.
    I beleive that I need to set the height, and width, I am just not sure why it was working before.
    Make sure that the header.php file exists (\includes\templates\cold_steel\common\tpl_header.php)

    looks like your image is being called from template_default

    /includes/templates/template_default/images/32ford.jpg
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

  9. #19
    Join Date
    Apr 2010
    Posts
    262
    Plugin Contributions
    1

    Default Re: Responsive Cold Steel Template

    Quote Originally Posted by rbarbour View Post
    It looks like you have an extra closing div (</div>) in tpl_main_page.php
    This is the file from the download, and the only instance I can see of a second </div>
    Lines 258-272
    Code:
    <div class="<?php echo $column_width_span; ?>">
    <?php
     /**
      * prepares and displays right column sideboxes
      *
      */
    ?>
    <?php require(DIR_WS_MODULES . zen_get_module_directory('column_right.php')); ?>
    
    </div>
    <?php
    }
    ?>
    </div>
    <?php } ?>

  10. #20
    Join Date
    Feb 2010
    Location
    Syracuse, NY
    Posts
    2,159
    Plugin Contributions
    17

    Default Re: Responsive Cold Steel Template

    Quote Originally Posted by vanhorn_s View Post
    This is the file from the download, and the only instance I can see of a second </div>
    Lines 258-272
    Code:
    <div class="<?php echo $column_width_span; ?>">
    <?php
     /**
      * prepares and displays right column sideboxes
      *
      */
    ?>
    <?php require(DIR_WS_MODULES . zen_get_module_directory('column_right.php')); ?>
    
    </div>
    <?php
    }
    ?>
    </div>
    <?php } ?>
    No that is good.

    Further up look by the

    PHP Code:
    <?php
     
    /**
      * prepares and displays left column sideboxes
      *
      */
    ?>
    Website - Github. Like the ZCA Bootstrap 4 Template? Donations Welcome. Bootstrap Plugins?

 

 
Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Cold Steel Template Support Thread
    By clydejones in forum Addon Templates
    Replies: 690
    Last Post: 8 Jun 2014, 12:25 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. Cold Steel Template - fatal error
    By itseemedsosimple in forum Addon Templates
    Replies: 2
    Last Post: 1 Mar 2011, 12:46 AM
  4. Attribute Alignment Problem Cold Steel Template
    By CascianoLtd in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 25 Sep 2009, 05:54 AM
  5. Cold Steel Favicon
    By staceyx in forum Addon Templates
    Replies: 2
    Last Post: 1 Jun 2009, 04:07 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