-
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
-
Re: Responsive Sheffield Blue
I'm trying to figure out how to remove the payment image in the header under Services dropdown. I have tried a few different things including
.payment-icon image{display:none;}
.payment-icon{display:none;}
and neither worked.
Any help is greatly appreciated.
Thanks
Mark
www.firstcapitalfirearms.com/zencart
-
Re: Responsive Sheffield Blue
Trying to move the Quick Links and Customer Service in the Footer. I basically want to move them some so that they are centered or something like that. Please check out www.firstcapitalfirearms.com/zencart for details.
Thanks
Mark
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
firstcapitalfirearms
I'm trying to figure out how to remove the payment image in the header under Services dropdown. I have tried a few different things including
.payment-icon image{display:none;}
.payment-icon{display:none;}
and neither worked.
Any help is greatly appreciated.
Thanks
Mark
www.firstcapitalfirearms.com/zencart
To remove the code entirely you will need to remove it from the includes/templates/responsive_sheffield_blue/common/tpl_mega_menu.php file. Or you could add an id to it and hide it with a display:none; in the stylesheet.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
firstcapitalfirearms
Trying to move the Quick Links and Customer Service in the Footer. I basically want to move them some so that they are centered or something like that. Please check out
www.firstcapitalfirearms.com/zencart for details.
Thanks
Mark
Try adding margin-left:30%; to dl in stylesheet_footer_menu.css
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Hany
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
Thank you so much for posting. This is the first time I have seen the problem. I will be sure to include the correction in a future template update.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
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
I am quite sure it is something I did but I have not made many changes at all to the template and especially not to the menu section. Is it possible I am missing a file that is keeping this from working? I guess it is time to look in the different directories to see if something is missing.
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
jnissley
I am quite sure it is something I did but I have not made many changes at all to the template and especially not to the menu section. Is it possible I am missing a file that is keeping this from working? I guess it is time to look in the different directories to see if something is missing.
What is the link to your site?
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
Ok, I understand. If you take a peek at the readme.html file included in the template package in the credits section there will be a link to the tutorial that has the code for the handheld menu ;)
Thanks,
Anne
Anne,
I am still struggling with this do you have any help you can give me? I have installed your pure CSS mega menu plugin and have downloaded the code for the Tessa it dropdowns as per your readme file.
I have then looked at your sheffeild blue template and tried to make it work to no avail :frusty:- the mega menu is fine but I cant get it to hide and the other one appear.
If you want to take a look - www (dot) woodcoglobal (dot) com/MULTI
It is the DIY Responsive template
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
gazag
Anne,
I am still struggling with this do you have any help you can give me? I have installed your pure CSS mega menu plugin and have downloaded the code for the Tessa it dropdowns as per your readme file.
I have then looked at your sheffeild blue template and tried to make it work to no avail :frusty:- the mega menu is fine but I cant get it to hide and the other one appear.
If you want to take a look - www (dot) woodcoglobal (dot) com/MULTI
It is the DIY Responsive template
I just looked at your site and you are not using the Responsive Sheffield Blue or any other of our free template packages?
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Hello Anne thank you for this template
I just had it installed and all of my products seems to have deactivated in a way, descriptions and things do not show.
www.snagssharkteeth.com
Can you help me reactivate my products please?
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Snaggle
Hello Anne thank you for this template
I just had it installed and all of my products seems to have deactivated in a way, descriptions and things do not show.
www.snagssharkteeth.com
Can you help me reactivate my products please?
There is nothing in the template package that would cause this to happen. Whenever you install a new template, you will need to copy any override files from already installed plugins form the old override directory to the new template override directory. Also, check your logs folder for errors and correct them.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Thanks Anne could you please teach me how to copy, over ride those files?
-
Re: Responsive Sheffield Blue
Hi Anne
Bug report
OS: Android 4.x
Browser: Google Chrome for Android
Problem: An incorrect behavior for mega menu, select/click menu item, the click goes to the slider!
Best of Luck
Hany
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Snaggle
Thanks Anne could you please teach me how to copy, over ride those files?
You can do this using ftp. Or you can upload the files to the new override folder.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Hany
Hi Anne
Bug report
OS: Android 4.x
Browser: Google Chrome for Android
Problem: An incorrect behavior for mega menu, select/click menu item, the click goes to the slider!
Best of Luck
Hany
Are you viewing on a phone? The mobile menu should be showing on this size device, not the mega menu which can not be used for hand held devices. What is the url where you see the bug?
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
Are you viewing on a phone? The mobile menu should be showing on this size device, not the mega menu which can not be used for hand held devices. What is the url where you see the bug?
Thanks,
Anne
Sorry Anne for the confusion, the problem is with hand held devices. I have tested using Samsung Galaxy tab P5100 & P3113 running android 4.1 & 4.2. Problem is only with chrome (CSS Browser Selector returns .android for chrome).
Btw; On FireFox & Internet Browser, the templates is running smothly without the mengamenu problem.
I'm using http://www.soukmix.com (on ipage) for testing.
Thanks
Hany
-
Re: Responsive Sheffield Blue
Hello Anne how do I change the hyperlink for the facebook Icon, youtube Icon in the box at the left?
Also how do I remov icons?
Thank you
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
What is the link to your site?
Thanks,
Anne
Gunkings.com is my site URL.
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Snaggle
Hello Anne how do I change the hyperlink for the facebook Icon, youtube Icon in the box at the left?
Also how do I remov icons?
Thank you
See the readme file for instructions on customizing the links.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Is there a place here to download these new templates or somewhere else?
-
Re: Responsive Sheffield Blue
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
wcsur
Is there a place here to download these new templates or somewhere else?
They are all in the plugins section of this site ;)
Thanks,
Anne
-
1 Attachment(s)
Re: Responsive Sheffield Blue
I'm not certain if this is related to the template file or not but I'm having the strangest problem with the featured/new items listing at the bottom of the listings. It does not post anything but the price and a details link to the product if there is no image. Any suggestions on where to look are appreciated.
Store is at http://www.texaselectrolysisstore.com
Attachment 13854
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
wyldside
I'm not certain if this is related to the template file or not but I'm having the strangest problem with the featured/new items listing at the bottom of the listings. It does not post anything but the price and a details link to the product if there is no image. Any suggestions on where to look are appreciated.
Store is at
http://www.texaselectrolysisstore.com
Attachment 13854
I went to your site and looked at the first category and do not see a problem.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
I went to your site and looked at the first category and do not see a problem.
Thanks,
Anne
Look under 'cards, pamplets and decor'. You may have to refresh a couple times, it only happens on items without images.
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
wyldside
Look under 'cards, pamplets and decor'. You may have to refresh a couple times, it only happens on items without images.
Change your template back to classic and see what happens.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
Change your template back to classic and see what happens.
Thanks,
Anne
The information appears as normal on the classic template. I looked at the page source and the data is literally not there under this template... The last item in the list below shows the bug, the first two appear normally but the last one only displays a price and a 'details' button.
...
Quote:
<div class="centerBoxContentsNew centeredContent back" style="width:33%;"><div class="product_title"><a href="http://texaselectrolysisstore.com/index.php?main_page=product_info&cPath=135&products_id=1212">Blue 5 Ounce Plastic Cups</a></div><div class="box_image"><a href="http://texaselectrolysisstore.com/index.php?main_page=product_info&cPath=135&products_id=1212"><img src="images/bluecup.jpg" alt="Blue 5 Ounce Plastic Cups" title=" Blue 5 Ounce Plastic Cups " width="150" height="150" /></a></div><div class="price">$25.49</div><div class="product_detail"><a href="http://texaselectrolysisstore.com/index.php?main_page=product_info&cPath=135&products_id=1212"><img itemprop="image" src="includes/templates/responsive_sheffield_blue/buttons/english/button_goto_prod_details.gif" alt="Go To This Product's Detailed Information" title=" Go To This Product's Detailed Information " width="78" height="31" /></a></div></div>
<div class="centerBoxContentsNew centeredContent back" style="width:33%;"><div class="product_title"><a href="http://texaselectrolysisstore.com/index.php?main_page=product_info&cPath=135&products_id=1213">Mauve 5 Ounce Plastic Cups</a></div><div class="box_image"><a href="http://texaselectrolysisstore.com/index.php?main_page=product_info&cPath=135&products_id=1213"><img src="images/mauvecup.jpg" alt="Mauve 5 Ounce Plastic Cups" title=" Mauve 5 Ounce Plastic Cups " width="150" height="150" /></a></div><div class="price">$25.49</div><div class="product_detail"><a href="http://texaselectrolysisstore.com/index.php?main_page=product_info&cPath=135&products_id=1213"><img itemprop="image" src="includes/templates/responsive_sheffield_blue/buttons/english/button_goto_prod_details.gif" alt="Go To This Product's Detailed Information" title=" Go To This Product's Detailed Information " width="78" height="31" /></a></div></div>
<div class="centerBoxContentsNew centeredContent back" style="width:33%;"><div class="price">$8.00</div><div class="product_detail"><a href="http://texaselectrolysisstore.com/index.php?main_page=product_info&cPath=135&products_id=1214"><img itemprop="image" src="includes/templates/responsive_sheffield_blue/buttons/english/button_goto_prod_details.gif" alt="Go To This Product's Detailed Information" title=" Go To This Product's Detailed Information " width="78" height="31" /></a></div></div>
<br class="clearBoth" />
-
Re: Responsive Sheffield Blue
Altering line 71 in new_products.php from:
...text' => (($new_products->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == 0)....
to
...text' => (($new_products->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == 1)...
Brings back the data but now I've got stray alt text from the extra <img> tags. While I can go in and change the code to compensate I am confused if this is a bug om the or a misconfiguration. The way the code reads (and I am decidedly rusty at reading code), it appears that the product details are captured within the ?: statement that should only affect the image tag?
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
wyldside
Altering line 71 in new_products.php from:
...text' => (($new_products->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == 0)....
to
...text' => (($new_products->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == 1)...
Brings back the data but now I've got stray alt text from the extra <img> tags. While I can go in and change the code to compensate I am confused if this is a bug om the or a misconfiguration. The way the code reads (and I am decidedly rusty at reading code), it appears that the product details are captured within the ?: statement that should only affect the image tag?
This modification should not be necessary at all. This is not a problem with the template package. It is working correctly on the demo, go to DVD Movies :: Action to see it:
Responsive Sheffield Blue
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Ok, thanks for the information. I'll keep digging.
-
Re: Responsive Sheffield Blue
I am wanting to know if / how to have my affiliate banners change every so often without refreshing the page. I currently have 2-3 for widebanners / footers and only 1 will display.
Thanks
Mark
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
firstcapitalfirearms
I am wanting to know if / how to have my affiliate banners change every so often without refreshing the page. I currently have 2-3 for widebanners / footers and only 1 will display.
Thanks
Mark
You would have to install a slider or slide show of some sort in place of the banners.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
How do i make the 'shop' dropdown wider? I have a huge number of categories, quite a few having rather long names and the dropdown line-wraps quite a few of them. Every time I try to adjust it I just end up tiling the text...
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
wyldside
How do i make the 'shop' dropdown wider? I have a huge number of categories, quite a few having rather long names and the dropdown line-wraps quite a few of them. Every time I try to adjust it I just end up tiling the text...
If you post a link to your site I can take a look.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Anne or Anyone,
I am wanting to figure out a couple of things. First is there a slideshow / slider banner plugin that you would recommend. I tried using ZX Slideshow, had a issue, posted a question on the support and the author was having a bad day and basically said that he could help after I read the support section because he believes I did not, I forgot to post a link to my site. I kindly emailed him back and said thanks but no thanks. Anyways is there anything you would recommend, if so what? If not I will just create a page called links and post all my affiliates there, would EZ Pages be the way to go if I go that route.
Finally I thought at one time, I may be wrong, but I saw a help section on your main site http://www.picaflor-azul.com/ about how to change the background color of the dropdowns on the header. Sorry I hope this makes sense as my mind is blank and I can't remember the correct terms for it. Basically when you move your mouse over the manufacturers in the header it list all the manufacturers but with a dark blue background. I would like to change the color.
As always any help is greatly appreciated.
Thanks
Mark
www.firstcapitalfirearms.com/zencart
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
firstcapitalfirearms
Anne or Anyone,
I am wanting to figure out a couple of things. First is there a slideshow / slider banner plugin that you would recommend. I tried using ZX Slideshow, had a issue, posted a question on the support and the author was having a bad day and basically said that he could help after I read the support section because he believes I did not, I forgot to post a link to my site. I kindly emailed him back and said thanks but no thanks. Anyways is there anything you would recommend, if so what? If not I will just create a page called links and post all my affiliates there, would EZ Pages be the way to go if I go that route.
Finally I thought at one time, I may be wrong, but I saw a help section on your main site
http://www.picaflor-azul.com/ about how to change the background color of the dropdowns on the header. Sorry I hope this makes sense as my mind is blank and I can't remember the correct terms for it. Basically when you move your mouse over the manufacturers in the header it list all the manufacturers but with a dark blue background. I would like to change the color.
As always any help is greatly appreciated.
Thanks
Mark
www.firstcapitalfirearms.com/zencart
You could just use the same slide show that is in the template package. There is no separate module for it, you would just need to modify the code in the template.
I do have a help section on my site, but am not allowed to post to it.
To change the background color of the drop down edit the stylesheet_mega_menu.css file line 17.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
firstcapitalfirearms
Anne or Anyone,
I am wanting to figure out a couple of things. First is there a slideshow / slider banner plugin that you would recommend. I tried using ZX Slideshow, had a issue, posted a question on the support and the author was having a bad day and basically said that he could help after I read the support section because he believes I did not, I forgot to post a link to my site. I kindly emailed him back and said thanks but no thanks. Anyways is there anything you would recommend, if so what? If not I will just create a page called links and post all my affiliates there, would EZ Pages be the way to go if I go that route.
Finally I thought at one time, I may be wrong, but I saw a help section on your main site
http://www.picaflor-azul.com/ about how to change the background color of the dropdowns on the header. Sorry I hope this makes sense as my mind is blank and I can't remember the correct terms for it. Basically when you move your mouse over the manufacturers in the header it list all the manufacturers but with a dark blue background. I would like to change the color.
As always any help is greatly appreciated.
Thanks
Mark
www.firstcapitalfirearms.com/zencart
Anne also has the Homepage Layout with CSS3 Hover Effects plugin
http://www.zen-cart.com/downloads.php?do=file&id=1576
which will work, but you will need to be prepared to edit the css to make it responsive.
Edit: Actually the above is as far as I have got - I think there might be issues with using it on a touch device - I'll have to experiment further. Perhaps not such a good solution after all.
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
You could just use the same slide show that is in the template package. There is no separate module for it, you would just need to modify the code in the template.
I do have a help section on my site, but am not allowed to post to it.
To change the background color of the drop down edit the stylesheet_mega_menu.css file line 17.
Thanks,
Anne
Anne, thanks for the help. I will look into the the slide show in the template package, may have more questions on that topic, just as an fyi. Again thanks for the help you provide here.
Thanks
Mark
-
Re: Responsive Sheffield Blue
Hi,
I've downloaded v1.5.1 and have been working my way through setting it up.
When I look at my test site:
http://newracketshop.hostinguk.org/catalogue/
in a smaller browser window or on my phone the text does not resize correctly - any ideas how I fix this?
Many thanks,
Geoff
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Geoffstrings
Hi,
I've downloaded v1.5.1 and have been working my way through setting it up.
When I look at my test site:
http://newracketshop.hostinguk.org/catalogue/
in a smaller browser window or on my phone the text does not resize correctly - any ideas how I fix this?
Many thanks,
Geoff
If you read back in the thread you will see that this is a header file bug that has already been identified and a fix has been posted.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
firstcapitalfirearms
Anne, thanks for the help. I will look into the the slide show in the template package, may have more questions on that topic, just as an fyi. Again thanks for the help you provide here.
Thanks
Mark
No problem ;)
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
If you read back in the thread you will see that this is a header file bug that has already been identified and a fix has been posted.
Thanks,
Anne
Hi Anne,
I tried the fix from post #113, but it doesn't seem to have had any effect - have I got the right one?
Thanks,
Geoff
-
Re: Responsive Sheffield Blue
Anne,
You replied that there is a patch for my product description not showing. I already installed responsive_sheffield_blue_patch.zip awhile ago and I still have the same issues. Should I reinstall the patch again or is that not the right patch.
Thanks
Mark
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
firstcapitalfirearms
Anne,
You replied that there is a patch for my product description not showing. I already installed responsive_sheffield_blue_patch.zip awhile ago and I still have the same issues. Should I reinstall the patch again or is that not the right patch.
Thanks
Mark
Read through this support thread to find the correct patch.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Geoffstrings
Hi Anne,
I tried the fix from post #113, but it doesn't seem to have had any effect - have I got the right one?
Thanks,
Geoff
The patch in post #113 is for the header bug. If the responsiveness is still broken then I would recommend backtracking though your changes until you find the point at which it broke. Be sure that you have followed all of the steps in the readme.html file.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
-
Re: Responsive Sheffield Blue
Hello picaflor-azul!
First i wanna say how generous and awesome it is that you put out these templates and support them for free! And many thanks for that, your tutorials have helped me immensly in understanding this product.
So i'm pretty new to this, by new I started a week ago.
I used godaddy to install zen cart, and it installed the newest version 1.5. I found your site and learned how to install templates on your site as well. I backed up the content before modifying the templates and such.
So i went through and did the install as instructed, but i'm getting this SQL error, and i'm having trouble seeing what needs to be updated. I've read through about 50 of the pages in this thread so far and i've seen some which point to the same initial error that pretty much just says warning! you have an error pretty much. So i followed the zencart FAQ and tracked down the error log.
Heres what the error log is showing. Any thoughts on what it might be?
Heres the site i'm working on:
http://tfwboston.com/market
[11-Mar-2014 22:03:00 America/Phoenix] PHP Fatal error: 1054:Unknown column 'show_box_min_width' in 'field list' :: select layout_box_name, show_box_min_width from zen_layout_boxes where layout_box_location = 0 and layout_box_status= '1' and layout_template ='responsive_sheffield_blue' order by layout_box_sort_order in /home/content/22/11486722/html/market/includes/classes/db/mysql/query_factory.php on line 120
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
cambomb
Hello picaflor-azul!
First i wanna say how generous and awesome it is that you put out these templates and support them for free! And many thanks for that, your tutorials have helped me immensly in understanding this product.
So i'm pretty new to this, by new I started a week ago.
I used godaddy to install zen cart, and it installed the newest version 1.5. I found your site and learned how to install templates on your site as well. I backed up the content before modifying the templates and such.
So i went through and did the install as instructed, but i'm getting this SQL error, and i'm having trouble seeing what needs to be updated. I've read through about 50 of the pages in this thread so far and i've seen some which point to the same initial error that pretty much just says warning! you have an error pretty much. So i followed the zencart FAQ and tracked down the error log.
Heres what the error log is showing. Any thoughts on what it might be?
Heres the site i'm working on:
http://tfwboston.com/market
[11-Mar-2014 22:03:00 America/Phoenix] PHP Fatal error: 1054:Unknown column 'show_box_min_width' in 'field list' :: select layout_box_name, show_box_min_width from zen_layout_boxes where layout_box_location = 0 and layout_box_status= '1' and layout_template ='responsive_sheffield_blue' order by layout_box_sort_order in /home/content/22/11486722/html/market/includes/classes/db/mysql/query_factory.php on line 120
I am happy that you like the template and are using it for your website ;)
If you follow the install instructions in the readme.html file included in the template package you will see that you have missed the step for uploading the sql patches.
Before getting too far on a godaddy server, I would recommend doing a search of the forum to see the problems associated with this web host.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
In mobile mode (on your demo site):
1. How does one log out?
2. Display alt text defines for menu, home and cart.
Thanks
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
dw08gm
In mobile mode (on your demo site):
1. How does one log out?
2. Display alt text defines for menu, home and cart.
Thanks
You can edit the includes/templates/responsive_sheffield_blue/templates/tpl_modules_mobile_categories_tabs.php
If you post your code once you have made the changes I can incorporate them into a future update of the template package.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
I am happy that you like the template and are using it for your website ;)
If you follow the install instructions in the readme.html file included in the template package you will see that you have missed the step for uploading the sql patches.
Before getting too far on a godaddy server, I would recommend doing a search of the forum to see the problems associated with this web host.
Thanks,
Anne
Hi Anne,
So you were completely right. I totally missed the SQL stuff. Thanks very much, feel pretty silly skipping a step like that. I'm on my way making modifications as we speak! Your tutorials and help really made a difference, thanks very much!
-
Re: Responsive Sheffield Blue
Been aiming to fix these in tpl_modules_mobile_categories_tabs.php for several weeks now, but to no avail.
If I happen to find the fixes, I surely will post them, unless someone beats me to it.
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
cambomb
Hi Anne,
So you were completely right. I totally missed the SQL stuff. Thanks very much, feel pretty silly skipping a step like that. I'm on my way making modifications as we speak! Your tutorials and help really made a difference, thanks very much!
I am so happy that you figured it out ;)
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Hany
Hi Anne
Bug report
OS: Android 4.x
Browser: Google Chrome for Android
Problem: An incorrect behavior for mega menu, select/click menu item, the click goes to the slider!
Best of Luck
Hany
Hi Anne
Did you figured out the solution for this problem?
Best Regards
Hany
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Hany
Hi Anne
Did you figured out the solution for this problem?
Best Regards
Hany
The mega menu is not touch friendly. It should switch to the mobile menu at lower screen resolutions but I am aware that the mega menu will show on some hand held devices that show the full version of the site. The new responsive template default code solves this problem. I do have plans to update all of the template packages, responsive and legacy to use the new code but don't have any specific eta.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
1. Adding hover titles to mobile menu icons
\includes\templates\responsive_sheffield_blue\templates\tpl_modules_mobile_categ ories_tabs.php
To add titles to icons, replace the following:
Code:
<a class="toggleMenu" href="#"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_MENU_IMAGE ?>" alt="m menu image" /></a>
<?php echo '<a class="m-home" href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_HOME_IMAGE ?>" alt=" m home" /></a>
<a class="m-cart" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_CART_IMAGE ?>" alt="m cart" /></a>
with
Code:
<!-- bof buttons -->
<!-- bof toggle menu button -->
<a class="mobToggle" href="#"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_MENU_IMAGE ?>" alt=" toggle menu" title="Menu" /></a>
<!-- bof home page button -->
<a class="m-home" href="#"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_HOME_IMAGE ?>" alt=" m home" title="Home" /></a>
<!-- bof cart page button -->
<a class="mobCart" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_CART_IMAGE ?>" alt=" cart" title="Cart" /></a>
<!-- eof buttons -->
and then replace that highlighted red with your own preference.
2. Display Login/Logout in mobile menu
\includes\templates\responsive_sheffield_blue\templates\tpl_modules_mobile_categ ories_tabs.php
Replace the following:
Code:
<li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
with
Code:
<?php
if ($_SESSION['customer_id']) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
<?php
} else {
if (STORE_STATUS == '0') {
?>
<li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
<?php
}
}
?>
Note: COWOA not installed
-
Re: Responsive Sheffield Blue
I need to modify the center column width to be 100% wide in the home page. I tried going to layout menu, in admin, and set up both sides to be 0 width, even with these changes the template still shows the center column at just 480px wide!
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
icecold
I need to modify the center column width to be 100% wide in the home page. I tried going to layout menu, in admin, and set up both sides to be 0 width, even with these changes the template still shows the center column at just 480px wide!
are you trying to put your featured items in the center and removing the left and right columns just centering the entire featured list out of curiosity?
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
dw08gm
1. Adding hover titles to mobile menu icons
\includes\templates\responsive_sheffield_blue\templates\tpl_modules_mobile_categ ories_tabs.php
To add titles to icons, replace the following:
Code:
<a class="toggleMenu" href="#"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_MENU_IMAGE ?>" alt="m menu image" /></a>
<?php echo '<a class="m-home" href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_HOME_IMAGE ?>" alt=" m home" /></a>
<a class="m-cart" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_CART_IMAGE ?>" alt="m cart" /></a>
with
Code:
<!-- bof buttons -->
<!-- bof toggle menu button -->
<a class="mobToggle" href="#"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_MENU_IMAGE ?>" alt=" toggle menu" title="Menu" /></a>
<!-- bof home page button -->
<a class="m-home" href="#"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_HOME_IMAGE ?>" alt=" m home" title="Home" /></a>
<!-- bof cart page button -->
<a class="mobCart" href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><img src="<?php echo $template->get_template_dir('',DIR_WS_TEMPLATE, $current_page_base,'images').'/'.M_CART_IMAGE ?>" alt=" cart" title="Cart" /></a>
<!-- eof buttons -->
and then replace that highlighted
red with your own preference.
2. Display Login/Logout in mobile menu
\includes\templates\responsive_sheffield_blue\templates\tpl_modules_mobile_categ ories_tabs.php
Replace the following:
Code:
<li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
with
Code:
<?php
if ($_SESSION['customer_id']) { ?>
<li><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
<?php
} else {
if (STORE_STATUS == '0') {
?>
<li><a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a></li>
<?php
}
}
?>
Note: COWOA not installed
Thank you for posting your code. I'll be sure to include it in a future update ;)
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
icecold
I need to modify the center column width to be 100% wide in the home page. I tried going to layout menu, in admin, and set up both sides to be 0 width, even with these changes the template still shows the center column at just 480px wide!
If you want this only on the home page, you should use this:
http://www.zen-cart.com/content.php?...ome-pages-only
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Hello, beautiful and wonderful responsive template. I am currently using v1.5.1 having a problem getting my add to cart button to show up on product listing. The price shows up but not add to cart?? Any suggestions? My product listing values are set like this:
Display Product Name: 1
Display Product Image: 2
Display Price/Add to Cart: 3
http://www.mycoolhats.com/catalog/in...index&cPath=66
-
Re: Responsive Sheffield Blue
Hmmm, perhaps it is because I have attributes on my items? If that is normal operation, then ignore my question. Because, when I don't have attributes, it will show the buy it now button - so obviously they cannot purchase item without selecting the attributes? I feel stupid. :bangin:
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
MyCoolHats
Hmmm, perhaps it is because I have attributes on my items? If that is normal operation, then ignore my question. Because, when I don't have attributes, it will show the buy it now button - so obviously they cannot purchase item without selecting the attributes? I feel stupid. :bangin:
That is correct :) You can install a plugin that will show the product attributes on the product listing page if you need this functionality.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
So i've made some headway with the customization, but when I turn off the columns on left and right the featured bar ends up breaking.
What i'm aiming to do is have all of my products lined up below the main slider bar on the home page so they can quickly be added to the cart without having to navigate to another page.
http://tfwboston.com/market/
I can't for the life of me find where to modify the actual featured section is controlled. I'm pretty much at a wall, just googling everything i can think of and searching for any reference to words in that bar.
The other problem i'm seeing is I can't actually remove the search.
http://www.zen-cart.com/showthread.p...er-Field/page2
I've been trying these methods, and tried turning it off in the admin but to no avail. I'm pretty stumped. Any help anyone might have with this would be of great help.
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
cambomb
So i've made some headway with the customization, but when I turn off the columns on left and right the featured bar ends up breaking.
What i'm aiming to do is have all of my products lined up below the main slider bar on the home page so they can quickly be added to the cart without having to navigate to another page.
http://tfwboston.com/market/
I can't for the life of me find where to modify the actual featured section is controlled. I'm pretty much at a wall, just googling everything i can think of and searching for any reference to words in that bar.
The other problem i'm seeing is I can't actually remove the search.
http://www.zen-cart.com/showthread.p...er-Field/page2
I've been trying these methods, and tried turning it off in the admin but to no avail. I'm pretty stumped. Any help anyone might have with this would be of great help.
Why do you want to remove it instead of just turning it off? It can be turned off in the admin--tools--layout boxes controller.
I have no idea what you did to break the tabbed home page modules. To turn off the right and left hand columns, do this in admin--configuration--layout settings.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Anne,
I changed the color of the header titles after one hovers over it. You stated that it was in the stylesheet_mega_menu.css which I found. I also am waiting to change the background color of the search in the header. Currently it is blue as well by default. For me to do that is it in the same file that you stated above. If so what am I looking for or is it just an image that I need to re-color.
Thanks
Mark
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
firstcapitalfirearms
Anne,
I changed the color of the header titles after one hovers over it. You stated that it was in the stylesheet_mega_menu.css which I found. I also am waiting to change the background color of the search in the header. Currently it is blue as well by default. For me to do that is it in the same file that you stated above. If so what am I looking for or is it just an image that I need to re-color.
Thanks
Mark
If you will be making css changes to the site I would recommend using firefox and installing firebug or the web developer tools. They will help you to see the exact line of which file you need to edit. I don't mind helping out if you get stuck, but I don't really want to be customizing your css for you line by line either ;)
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Hi Anne
There are many "*zoom:1" in responsive.css & one in stylesheet.css
Are they essential?
Thanks
Hany
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Hany
Hi Anne
There are many "*zoom:1" in responsive.css & one in stylesheet.css
Are they essential?
Thanks
Hany
Yes, do a google search to find out what these are used for.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
How do I remove "Brands" from the nav bar?
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Names
How do I remove "Brands" from the nav bar?
See the readme.html file included in the template package for instructions.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
See the readme.html file included in the template package for instructions.
Thanks,
Anne
Sorry about that, Late night, missed it.
Also having issue with the searchbox jumping to the middle of the megamenu upon Loging in--FireFox- not IE
I saw similar screenshots around post #26 but couldn't tell if it was an implementation issue or not.?
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Names
Sorry about that, Late night, missed it.
Also having issue with the searchbox jumping to the middle of the megamenu upon Loging in--FireFox- not IE
I saw similar screenshots around post #26 but couldn't tell if it was an implementation issue or not.?
There is no issue with the search box present in the template demo. If you are having trouble it is probably related to a customization you have made. If you post a link to your site I can take a look.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
I don't know where the issue has been addressed but I was told to find it here. I have searched the thread and not found the why. Please give me a bread crumb to the answer...
I can see my description in the Product List: http://ostomytoilet.com/index.php?ma...=index&cPath=1
But no joy in product info page: http://ostomytoilet.com/index.php?ma...&products_id=3
I messed it up somehow and I don't want to reinstall again. Probably just some switch. Anyone know why?
Dedicated IP on my OLM Server Host: ostomytoilet.com 69.94.104.185
PHP Version 5.4.21
Database Patch Level: 1.5.1
Zen Cart: v1.5.1 [2014-02-23 17:53:11] (New Installation)
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
charmlt
I don't know where the issue has been addressed but I was told to find it here. I have searched the thread and not found the why. Please give me a bread crumb to the answer...
I can see my description in the Product List:
http://ostomytoilet.com/index.php?ma...=index&cPath=1
But no joy in product info page:
http://ostomytoilet.com/index.php?ma...&products_id=3
I messed it up somehow and I don't want to reinstall again. Probably just some switch. Anyone know why?
Dedicated IP on my OLM Server Host: ostomytoilet.com 69.94.104.185
PHP Version 5.4.21
Database Patch Level: 1.5.1
Zen Cart: v1.5.1 [2014-02-23 17:53:11] (New Installation)
This is a bug with the template. If you read through the thread there is a patch posted to fix it. Try searching the thread for the post.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Anne,
I was directed to a patch that was unrecognizable when I downloaded it:
http://www.zen-cart.com/showthread.p...25#post1221225
Is there any other location that I can find this fix?
Thanks,
Mark
Btw; The theme looks great, I will buy it if I can get it to work. That's how I roll! :)
-
Re: Responsive Sheffield Blue
To fix the description bug, find the responsive.css file and change .content to .content1 on line 304 (last line).
-
Re: Responsive Sheffield Blue
Is this right?
To fix this, in the responsive.css change .content to .content1 on line 304.
If so, done and done. Thanks much wyldside!
Thanks
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
charmlt
Is this right?
To fix this, in the responsive.css change .content to .content1 on line 304.
If so, done and done. Thanks much wyldside!
Thanks
The patch you downloaded is correct, but I remember that the .content bug was fixed in the latest version of the template package--there is no patch needed.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
The patch you downloaded is correct, but I remember that the .content bug was fixed in the latest version of the template package--there is no patch needed.
Thanks,
Anne
Latest version of the template package? Meaning one newer than Version 1.1 posted on Sep 19
The correction to .content wasn't first posted until Sep 27 (http://www.zen-cart.com/showthread.p...52#post1220352) and the other patch that addressed the tpl_header (and content bug) was posted Oct 4 (http://www.zen-cart.com/showthread.p...25#post1221225) Is there a newer package than above or was it "internally" modified and the date not adjusted?
I know that you have provided a great number of packages. :smile:
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
mc12345678
No, you are correct. The bug will be fixed in the update of the package. It can be confusing for me!
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
No, you are correct. The bug will be fixed in the update of the package. It can be confusing for me!
Thanks,
Anne
Off subject: I know, I have only uploaded a few plugins, they are not related to each other and that still can be confusing. You have several "similar" ones and some of the updates relate to all/most of them. :) Thank you though.look forwas to the update when it's considered teady.
-
Re: Responsive Sheffield Blue
Ok I have put my new install online. No addons other than ckeditor,
and of course bringing over my database for an upgrade from 1.50
I still get the search-box in the middle of the bar upon login and cart, but only with Firefox.
I understand this is not a template issue but any clues would be much appreciated.
ALLCRESTS.COM
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Names
Ok I have put my new install online. No addons other than ckeditor,
and of course bringing over my database for an upgrade from 1.50
I still get the search-box in the middle of the bar upon login and cart, but only with Firefox.
I understand this is not a template issue but any clues would be much appreciated.
ALLCRESTS.COM
I just looked at your site on a desktop and do not see the problem. On which device do you see the problem?
Thanks,
Anne
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
I just looked at your site on a desktop and do not see the problem. On which device do you see the problem?
Thanks,
Anne
Any desktop using FireFox or Chrome
Again ,this issue only appears when Logged In.
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Names
Any desktop using FireFox or Chrome
Again ,this issue only appears when Logged In.
I am logged in on a desktop and don't see any problem with the header search. I checked firefox and chrome.
Thanks,
Anne
-
1 Attachment(s)
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
I am logged in on a desktop and don't see any problem with the header search. I checked firefox and chrome.
Thanks,
Anne
Ok, just downloaded a fresh install of FireFox on a business laptop running W7 32bit
same issue, guess I am over it. Thank you for your time. I will go back to andover which was nice and clean for me.
Attachment 13914
-
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
Names
Ok, just downloaded a fresh install of FireFox on a business laptop running W7 32bit
same issue, guess I am over it. Thank you for your time. I will go back to andover which was nice and clean for me.
Attachment 13914
When I asked you for the device you were using you said desktop, so this is what I viewed the site with.
What is the screen resolution on your lap top?
You might have to adjust the responsive.css for the specific screen resolution.
Thanks,
Anne
-
Re: Responsive Sheffield Blue
I don't have time to pour over all 600 responses to this thread. I can fix most anything as long as I know where it is broke and there is a fix.
Can you direct me to a list of any other patches for the Responsive Sheffield Blue theme?
I absolutely love this theme and by looking at the number of hits, it looks as though I'm not alone. As soon as I get it and SSL up and running I will buy it but till then I want it to work as described. Please tell me where to download the patches or find the solutions for all glitches and If it is not possible, can I have the criteria for a proper keyword search for the answers?
-
Re: Responsive Sheffield Blue
So, I don't know how this plaus into things, but I too had seen something like that, but only on my production server and not on my test server. So I went through and did a comparison of all my files, nothing was different between the two sites. I then opened two browsers one to the test and one to production. When looking at them, there was a subtle difference it seemed my production server view was "bigger". I held my ctrl-key (windows pc) zoomed out one "notch" and alas, all was good in the world.
Before doing that I had also tried to close the browser and reopen it, but the result was the same. I had tried clearing cookies and the cache, same thing. I was frantic because it "just started happening". Now that doesn't fix the "fresh" install part, but maybe it helps someone.