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.
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
mutinyzoo
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
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
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.
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
firstcapitalfirearms
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;}
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
firstcapitalfirearms
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
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
jnissley
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
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
mc12345678
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
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
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
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