Page 51 of 116 FirstFirst ... 41495051525361101 ... LastLast
Results 501 to 510 of 1160
  1. #501
    Join Date
    Mar 2011
    Location
    Pensacola, FL
    Posts
    88
    Plugin Contributions
    4

    Default Re: Responsive Sheffield Blue

    I love this template, Anne! In one install I'm framing a wordpress install within ZC (the numinix method) and the <dl> tags were interfering with WP gallery. It looks like they are only being used in the footer, so in tpl_footer_menu.php changed <dl> to <dl class="footer"> and in both responsive.css and stylesheet_footer_menu.css changed dt{height:30px} to footer.dt{height:30px}. - in case that's helpful to anyone.

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

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by mutinyzoo View Post
    I love this template, Anne! In one install I'm framing a wordpress install within ZC (the numinix method) and the <dl> tags were interfering with WP gallery. It looks like they are only being used in the footer, so in tpl_footer_menu.php changed <dl> to <dl class="footer"> and in both responsive.css and stylesheet_footer_menu.css changed dt{height:30px} to footer.dt{height:30px}. - in case that's helpful to anyone.
    I am happy that you like it ;) Thank you so much for posting. I am sure that it will help someone else ;)

    Thanks,

    Anne

  3. #503
    Join Date
    Sep 2012
    Posts
    196
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    I am trying to figure out how to delete the payment icon on the footer. I believe I deleted the image but the "no icon" image is in its place instead.

    Any help is greatly appreciated.

    Thanks
    Mark

  4. #504
    Join Date
    Oct 2013
    Location
    Texas
    Posts
    7
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    I am not sure if my problem is configuration or not but when the template is in the small screen mode the search part of the menu does not have anything in the box when it is expanded. When I use google chome developer tools the section shows empty. Any assistance would be appreciated.

  5. #505
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by firstcapitalfirearms View Post
    I am trying to figure out how to delete the payment icon on the footer. I believe I deleted the image but the "no icon" image is in its place instead.

    Any help is greatly appreciated.

    Thanks
    Mark
    Something similar has been identified in the forum; however, to hide the graphic at the bottom (credit cards and paypal in the graphic) add the following to the stylesheet.css file that is located in the templates/responsive_sheffield_blue/css directory.

    Code:
    .payments-image {display: none;}
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

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

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by firstcapitalfirearms View Post
    I am trying to figure out how to delete the payment icon on the footer. I believe I deleted the image but the "no icon" image is in its place instead.

    Any help is greatly appreciated.

    Thanks
    Mark
    You use a display:none; in the css to hide the footer payments icon if you do not want it to show. If you post a link to your site I can take a look.

    Thanks,

    Anne

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

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by jnissley View Post
    I am not sure if my problem is configuration or not but when the template is in the small screen mode the search part of the menu does not have anything in the box when it is expanded. When I use google chome developer tools the section shows empty. Any assistance would be appreciated.
    I just checked the demo in chrome on the smallest device size and see the search input and button in the menu when the "search" is expanded. Maybe one of the modifications you have made is breaking this.

    Respponsive Sheffield Blue Demo

    Thanks,

    Anne

  8. #508
    Join Date
    Sep 2012
    Posts
    196
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by mc12345678 View Post
    Something similar has been identified in the forum; however, to hide the graphic at the bottom (credit cards and paypal in the graphic) add the following to the stylesheet.css file that is located in the templates/responsive_sheffield_blue/css directory.

    Code:
    .payments-image {display: none;}
    Thanks for the help. All is well now.

    Thanks
    Mark

  9. #509
    Join Date
    Sep 2012
    Posts
    196
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by picaflor-azul View Post
    You use a display:none; in the css to hide the footer payments icon if you do not want it to show. If you post a link to your site I can take a look.

    Thanks,

    Anne
    Thanks for the help. All is well for the time being.

    Thanks
    Mark

  10. #510
    Join Date
    Sep 2013
    Location
    Cairo, Egypt
    Posts
    21
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Hi Anne

    small bug in: /includes/modules/sideboxes/responsive_sheffield_blue/ezpages_drop_menu.php

    Code:
    /*
    Soloving '?target="_blank"' Bug, 'target="blank"' added near end of while loop
              // internal link new window
              case ($page_query->fields['alt_url'] != '' and $page_query->fields['page_open_new_window'] == '1'):
              $page_query_list_sidebox[$rows]['altURL']  = (substr($page_query->fields['alt_url'],0,4) == 'http') ?
              $page_query->fields['alt_url'] :
              ($page_query->fields['alt_url']=='' ? '' : zen_href_link($page_query->fields['alt_url'], 'target="_blank', ($page_query->fields['page_is_ssl']=='0' ? 'NONSSL' : 'SSL'), true, true, true));
              break;
              // internal link same window
              case ($page_query->fields['alt_url'] != '' and $page_query->fields['page_open_new_window'] == '0'):
              $page_query_list_sidebox[$rows]['altURL']  = (substr($page_query->fields['alt_url'],0,4) == 'http') ?
              $page_query->fields['alt_url'] :
              ($page_query->fields['alt_url']=='' ? '' : zen_href_link($page_query->fields['alt_url'], '', ($page_query->fields['page_is_ssl']=='0' ? 'NONSSL' : 'SSL'), true, true, true));
              break;
    */
              // internal link new window or same window
              case ($page_query->fields['alt_url'] != ''):
              $page_query_list_sidebox[$rows]['altURL']  = (substr($page_query->fields['alt_url'],0,4) == 'http') ?
              $page_query->fields['alt_url'] :
              ($page_query->fields['alt_url']=='' ? '' : zen_href_link($page_query->fields['alt_url'], '', ($page_query->fields['page_is_ssl']=='0' ? 'NONSSL' : 'SSL'), true, true, true));
              break;
    Best of luck
    Hany

 

 
Page 51 of 116 FirstFirst ... 41495051525361101 ... LastLast

Similar Threads

  1. v154 Responsive Sheffield Blue v2.0
    By picaflor-azul in forum Addon Templates
    Replies: 1517
    Last Post: 13 Apr 2024, 01:50 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