Page 50 of 152 FirstFirst ... 40484950515260100150 ... LastLast
Results 491 to 500 of 1518
  1. #491
    Join Date
    Mar 2008
    Location
    USA
    Posts
    560
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    This is a fresh new install of v1.5.4 and of this template. BTW, I really appreciate you taking the time to design this responsive template and from what I have read of the new v1.6 coming out soon, you are working on a brand new one also. Looking forward to that!

    For now I have a bit of a situation that I need some help with. I am trying to change the size of the slides in the slide show. Could you tell me what line on the stylesheet I could find the size of the slide so I could change it? I inspected it and can’t find it anywhere. I would like to change it to 1024 x 768, if possible. If there is more to it than just changing the stylesheet, could you fill me in on that too.

    The new website is here: www.lingerieloversboutique.com

    Thanks so much for your help.

    Silver

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

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by SilverHD View Post
    This is a fresh new install of v1.5.4 and of this template. BTW, I really appreciate you taking the time to design this responsive template and from what I have read of the new v1.6 coming out soon, you are working on a brand new one also. Looking forward to that!

    For now I have a bit of a situation that I need some help with. I am trying to change the size of the slides in the slide show. Could you tell me what line on the stylesheet I could find the size of the slide so I could change it? I inspected it and can’t find it anywhere. I would like to change it to 1024 x 768, if possible. If there is more to it than just changing the stylesheet, could you fill me in on that too.

    The new website is here: www.lingerieloversboutique.com

    Thanks so much for your help.

    Silver
    You can adjust the width of the slides on line 10 of the stylesheet_flex.css. Adding margin:0 auto; with center it. I would recommend using a percentage as it will be more responsive friendly.



    Thanks,

    Anne

  3. #493
    Join Date
    Mar 2008
    Location
    USA
    Posts
    560
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    Anne:

    Thank you. I will give it a try.

    Silver

  4. #494
    Join Date
    Sep 2005
    Location
    Ocala, FL
    Posts
    494
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    How can I add a search icon to tpl_header_mobile.php?

    Code:
    <?php
    /**
     * Common Template - tpl_header.php
     *
     * this file can be copied to /templates/your_template_dir/pagename<br />
     * example: to override the privacy page<br />
     * make a directory /templates/my_template/privacy<br />
     * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
     * to override the global settings and turn off the footer un-comment the following line:<br />
     * <br />
     * $flag_disable_header = true;<br />
     *
     * @package templateSystem
     * @copyright Copyright 2003-2012 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 GIT: $Id: Author: Ian Wilson  Tue Aug 14 14:56:11 2012 +0100 Modified in v1.5.1 $
     * Modifies by Anne (Picaflor-Azul.com), Responsive Sheffield Blue v1.0
     */
    ?>
    
    <?php
      // Display all header alerts via messageStack:
      if ($messageStack->size('header') > 0) {
        echo $messageStack->output('header');
      }
      if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
      echo htmlspecialchars(urldecode($_GET['error_message']), ENT_COMPAT, CHARSET, TRUE);
      }
      if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
       echo htmlspecialchars($_GET['info_message'], ENT_COMPAT, CHARSET, TRUE);
    } else {
    
    }
    ?>
    
    
    <!--bof-header logo and navigation display-->
    <?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>
    <?php
    /**
     ******************************* BOF 2.1 **********************************
     */
    ?>
    <div id="headerWrapper" class="<?php echo $fluidisFixed; ?>">
    <?php
    /**
     ******************************* EOF 2.1 **********************************
     */
    ?>
    
    
    
    <div id="top-middle">
    <div class="onerow-fluid <?php echo $fluidisFixed; ?>">
    
    <div id="navMainWrapper">
    <div id="navMain">
        <ul>
    <?php if ($_SESSION['customer_id']) { ?>
         <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><i class="fa fa-home" title="Home"></i><span class="tp-hide"><?php echo HEADER_TITLE_CATALOG; ?></span></a><span class="tp-hide"> | </span></li>
        <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><i class="fa fa-power-off" title="Log Off"></i><span class="tp-hide"><?php echo HEADER_TITLE_LOGOFF; ?></span></a><span class="tp-hide"> | </span></li>
        <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><i class="fa fa-user" title="My Account"></i><span class="tp-hide"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></span></a><span class="tp-hide"> | </span></li>
    <?php
          } else {
            if (STORE_STATUS == '0') {
    ?>
         <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><i class="fa fa-home" title="Home"></i><span class="tp-hide"><?php echo HEADER_TITLE_CATALOG; ?></span></a><span class="tp-hide"> | </span></li>
        <li class="h-login"><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><i class="fa fa-arrow-right" title="Log In/Register"></i><span class="tp-hide"><?php echo HEADER_TITLE_LOGIN; ?></span></a><span class="tp-hide"> | </span></li>
    <?php } } ?>
    
    
        <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><i class="fa fa-shopping-cart" title="Shopping Cart"></i><?php echo $_SESSION['cart']->count_contents();?>  - <?php echo $currencies->format($_SESSION['cart']->show_total());?></a><span class="tp-hide"></span></li>
    
       <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
    <li> | <a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><i class="fa fa-check-square" title="Checkout"></i><span class="tp-hide"><?php echo HEADER_TITLE_CHECKOUT; ?></span></a></li>
    <?php }?>
    
    </ul>
    </div>
    </div>
    <!--eof-navigation display-->
    
    
    <!--bof-branding display-->
    <div id="logoWrapper">
        <div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?>
        </div>
    <?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
        <div id="taglineWrapper">
    <?php
                  if (HEADER_SALES_TEXT != '') {
    ?>
          <div id="tagline">
    
    <?php echo HEADER_SALES_TEXT;?>
    
          </div>
    <?php
                  }
    ?>
    <?php
                  if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
                    if ($banner->RecordCount() > 0) {
    ?>
          <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
    <?php
                    }
                  }
    ?>
    
    
    
    
        </div>
    <?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
    
    </div>
    
    
    <div id="header-nav">
    <div id="cur-lan-header">
        <?php require(DIR_WS_MODULES . 'sideboxes/languages_header.php'); ?>
        <?php require(DIR_WS_MODULES . 'sideboxes/currencies_header.php'); ?>
    </div>
    
    
    
    
    
    <!--bof menu display-->
    <?php require($template->get_template_dir('tpl_modules_mobile_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_mobile_categories_tabs.php');?>
    <!--eof menu display-->
    
    </div>
    
    
    <div class="clearBoth"></div>
    <!--eof-branding display-->
    <!--eof-header logo and navigation display-->
    
    <div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
    
    
    
    </div>
    </div>
    
    
    <div class="onerow-fluid">
    
    <?php
        if ($this_is_home_page) {
    ?>
    
    <?php
    if (RSB_SLIDER_STATUS == 'true') {
    ?>
    
              <?php require($template->get_template_dir('tpl_home_slider.php',DIR_WS_TEMPLATE, $current_page_base,'common')
                            . '/tpl_home_slider.php');?>
    
    
    <?php } ?>
    <?php } ?>
    
    
    </div>
    
    
    
    
    
    
    
    <!--bof-optional categories tabs navigation display-->
    <?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
    <!--eof-optional categories tabs navigation display-->
    
    <!--bof-header ezpage links-->
    <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
    <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
    <?php } ?>
    <!--eof-header ezpage links-->
    </div>
    
    
    
    <?php } ?>
    Last edited by spawnie69; 10 Dec 2015 at 04:00 PM.

  5. #495
    Join Date
    Mar 2008
    Location
    USA
    Posts
    560
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    Ann:

    Are you saying that I can place any height slide as long as I add--- margin:0 auto;?

    As far as the % of the width. How would that work? The width of the template now is 1119 and I am trying to reduce it to 1024. Do I just do a %? Sorry to be such a pain, but I know what could happen if I mess this up.

    Thanks again,

    Silver

    Thanks again,

    Silver

  6. #496
    Join Date
    Aug 2006
    Location
    Kihikihi, New Zealand
    Posts
    230
    Plugin Contributions
    3

    Default Re: Responsive Sheffield Blue V 2.0!

    I have a ZenCart 1.5.4 installation with Responsive Sheffield Blue v2.0 and am getting 2 PHP Fatal errors :

    From myDebug.log
    Code:
    1109:Unknown table 'p' in field list :: select count(p.products_id) as total  ==> (as called by) /includes/classes/split_page_results.php on line 78 <== in /includes/classes/db/mysql/query_factory.php on line 155
    These errors occur when I am placing items in my shopping cart and proceed to checkout.

    On the page it shows:
    Code:
    An unknown response null: :text/html, charset=utf8: :syntax error: JSON parse: unexpected end of data at line 1 column 1 of the JSON data was received while processing an ajax call. The action you requested could not be completed.
    Anyone know how to fix this?

    Thanks,

    Goshawk

  7. #497
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by spawnie69 View Post
    How can I add a search icon to tpl_header_mobile.php?

    Code:
    <?php
    /**
     * Common Template - tpl_header.php
     *
     * this file can be copied to /templates/your_template_dir/pagename<br />
     * example: to override the privacy page<br />
     * make a directory /templates/my_template/privacy<br />
     * copy /templates/templates_defaults/common/tpl_footer.php to /templates/my_template/privacy/tpl_header.php<br />
     * to override the global settings and turn off the footer un-comment the following line:<br />
     * <br />
     * $flag_disable_header = true;<br />
     *
     * @package templateSystem
     * @copyright Copyright 2003-2012 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 GIT: $Id: Author: Ian Wilson  Tue Aug 14 14:56:11 2012 +0100 Modified in v1.5.1 $
     * Modifies by Anne (Picaflor-Azul.com), Responsive Sheffield Blue v1.0
     */
    ?>
    
    <?php
      // Display all header alerts via messageStack:
      if ($messageStack->size('header') > 0) {
        echo $messageStack->output('header');
      }
      if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
      echo htmlspecialchars(urldecode($_GET['error_message']), ENT_COMPAT, CHARSET, TRUE);
      }
      if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
       echo htmlspecialchars($_GET['info_message'], ENT_COMPAT, CHARSET, TRUE);
    } else {
    
    }
    ?>
    
    
    <!--bof-header logo and navigation display-->
    <?php
    if (!isset($flag_disable_header) || !$flag_disable_header) {
    ?>
    <?php
    /**
     ******************************* BOF 2.1 **********************************
     */
    ?>
    <div id="headerWrapper" class="<?php echo $fluidisFixed; ?>">
    <?php
    /**
     ******************************* EOF 2.1 **********************************
     */
    ?>
    
    
    
    <div id="top-middle">
    <div class="onerow-fluid <?php echo $fluidisFixed; ?>">
    
    <div id="navMainWrapper">
    <div id="navMain">
        <ul>
    <?php if ($_SESSION['customer_id']) { ?>
         <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><i class="fa fa-home" title="Home"></i><span class="tp-hide"><?php echo HEADER_TITLE_CATALOG; ?></span></a><span class="tp-hide"> | </span></li>
        <li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><i class="fa fa-power-off" title="Log Off"></i><span class="tp-hide"><?php echo HEADER_TITLE_LOGOFF; ?></span></a><span class="tp-hide"> | </span></li>
        <li><a href="<?php echo zen_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>"><i class="fa fa-user" title="My Account"></i><span class="tp-hide"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></span></a><span class="tp-hide"> | </span></li>
    <?php
          } else {
            if (STORE_STATUS == '0') {
    ?>
         <li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><i class="fa fa-home" title="Home"></i><span class="tp-hide"><?php echo HEADER_TITLE_CATALOG; ?></span></a><span class="tp-hide"> | </span></li>
        <li class="h-login"><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><i class="fa fa-arrow-right" title="Log In/Register"></i><span class="tp-hide"><?php echo HEADER_TITLE_LOGIN; ?></span></a><span class="tp-hide"> | </span></li>
    <?php } } ?>
    
    
        <li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><i class="fa fa-shopping-cart" title="Shopping Cart"></i><?php echo $_SESSION['cart']->count_contents();?>  - <?php echo $currencies->format($_SESSION['cart']->show_total());?></a><span class="tp-hide"></span></li>
    
       <?php if ($_SESSION['cart']->count_contents() != 0) { ?>
    <li> | <a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><i class="fa fa-check-square" title="Checkout"></i><span class="tp-hide"><?php echo HEADER_TITLE_CHECKOUT; ?></span></a></li>
    <?php }?>
    
    </ul>
    </div>
    </div>
    <!--eof-navigation display-->
    
    
    <!--bof-branding display-->
    <div id="logoWrapper">
        <div id="logo"><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?>
        </div>
    <?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
        <div id="taglineWrapper">
    <?php
                  if (HEADER_SALES_TEXT != '') {
    ?>
          <div id="tagline">
    
    <?php echo HEADER_SALES_TEXT;?>
    
          </div>
    <?php
                  }
    ?>
    <?php
                  if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
                    if ($banner->RecordCount() > 0) {
    ?>
          <div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
    <?php
                    }
                  }
    ?>
    
    
    
    
        </div>
    <?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
    
    </div>
    
    
    <div id="header-nav">
    <div id="cur-lan-header">
        <?php require(DIR_WS_MODULES . 'sideboxes/languages_header.php'); ?>
        <?php require(DIR_WS_MODULES . 'sideboxes/currencies_header.php'); ?>
    </div>
    
    
    
    
    
    <!--bof menu display-->
    <?php require($template->get_template_dir('tpl_modules_mobile_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_mobile_categories_tabs.php');?>
    <!--eof menu display-->
    
    </div>
    
    
    <div class="clearBoth"></div>
    <!--eof-branding display-->
    <!--eof-header logo and navigation display-->
    
    <div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>
    
    
    
    </div>
    </div>
    
    
    <div class="onerow-fluid">
    
    <?php
        if ($this_is_home_page) {
    ?>
    
    <?php
    if (RSB_SLIDER_STATUS == 'true') {
    ?>
    
              <?php require($template->get_template_dir('tpl_home_slider.php',DIR_WS_TEMPLATE, $current_page_base,'common')
                            . '/tpl_home_slider.php');?>
    
    
    <?php } ?>
    <?php } ?>
    
    
    </div>
    
    
    
    
    
    
    
    <!--bof-optional categories tabs navigation display-->
    <?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
    <!--eof-optional categories tabs navigation display-->
    
    <!--bof-header ezpage links-->
    <?php if (EZPAGES_STATUS_HEADER == '1' or (EZPAGES_STATUS_HEADER == '2' and (strstr(EXCLUDE_ADMIN_IP_FOR_MAINTENANCE, $_SERVER['REMOTE_ADDR'])))) { ?>
    <?php require($template->get_template_dir('tpl_ezpages_bar_header.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_ezpages_bar_header.php'); ?>
    <?php } ?>
    <!--eof-header ezpage links-->
    </div>
    
    
    
    <?php } ?>


    The template comes with font awesome so you can add your font awesome icon to the file anywhere that you want it to show on phones.

    Thanks,

    Anne

  8. #498
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by SilverHD View Post
    Ann:

    Are you saying that I can place any height slide as long as I add--- margin:0 auto;?

    As far as the % of the width. How would that work? The width of the template now is 1119 and I am trying to reduce it to 1024. Do I just do a %? Sorry to be such a pain, but I know what could happen if I mess this up.

    Thanks again,

    Silver

    Thanks again,

    Silver

    Do you want to change the width of the template or just the width of the slide show?

    Thanks,

    Anne

  9. #499
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Responsive Sheffield Blue V 2.0!

    Quote Originally Posted by Goshawk View Post
    I have a ZenCart 1.5.4 installation with Responsive Sheffield Blue v2.0 and am getting 2 PHP Fatal errors :

    From myDebug.log
    Code:
    1109:Unknown table 'p' in field list :: select count(p.products_id) as total  ==> (as called by) /includes/classes/split_page_results.php on line 78 <== in /includes/classes/db/mysql/query_factory.php on line 155
    These errors occur when I am placing items in my shopping cart and proceed to checkout.

    On the page it shows:
    Code:
    An unknown response null: :text/html, charset=utf8: :syntax error: JSON parse: unexpected end of data at line 1 column 1 of the JSON data was received while processing an ajax call. The action you requested could not be completed.
    Anyone know how to fix this?

    Thanks,

    Goshawk
    It looks like you do not have that file uploaded from the template package:

    includes/classes/split_page_results.php

    Thanks,

    Anne

  10. #500
    Join Date
    Mar 2008
    Location
    USA
    Posts
    560
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue V 2.0!

    Anne:

    I want to change the width and height of the slide show. Sorry for the confusion. Ideally 1024 x 768 but I want to make sure it changes with different browsers.

    Thank you,

    Silver

 

 

Similar Threads

  1. v151 Responsive Sheffield Blue v1.0
    By picaflor-azul in forum Addon Templates
    Replies: 1159
    Last Post: 23 Apr 2023, 01:20 AM
  2. v155 Responsive Classic vs Responsive Sheffield Blue vs ?
    By Zean in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 13 May 2016, 07:01 AM
  3. v154 Responsive Sheffield Blue change menu links
    By Annie_zaz in forum Addon Templates
    Replies: 3
    Last Post: 7 May 2016, 11:33 PM
  4. v154 Responsive Sheffield Blue v.2.0 Pricing not showing
    By SilverHD in forum Addon Templates
    Replies: 13
    Last Post: 4 Nov 2015, 10:57 PM
  5. v154 Questions re: Responsive Sheffield Blue
    By dfontana in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 14 Aug 2015, 02:43 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