Re: Responsive Sheffield Blue
Quote:
Originally Posted by
picaflor-azul
I am happy that you figured it out ;)
Thanks,
Anne
hi
i installed the template , is good..
I, however, '2 problems
1 on the product page the box on the right go down '! right above the footer
I tried to change the settings (show box min-with on/off) but to not resolved
http://www.ganciotraino.eu/gancio-tr...mamc-p-72.html
-----------
2 even though I changed the layout setting the width of the box, this does not change reality in the frontend!
thanks
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
favjola
hi
i installed the template , is good..
I, however, '2 problems
1 on the product page the box on the right go down '! right above the footer
I tried to change the settings (show box min-with on/off) but to not resolved
http://www.ganciotraino.eu/gancio-tr...mamc-p-72.html
-----------
2 even though I changed the layout setting the width of the box, this does not change reality in the frontend!
thanks
The box on the right that you are referring to, is it the one that begins with this text:
A partire da:
If so that is moved by rearranging the code between and including the <div id="cart"> declaration in the:
includes/templates/responsive_sheffield_blue/templates/tpl_product_info_display.php file (or if of a different product type then that particular product type's info display file.)
2) the width of the above box is determined primarily by the content of the box. You can force it to be of a particular size if you want to, but at the moment it expands or contracts based on the content within it. For example in the includes/templates/responsive_sheffield_blue/css/stylesheet.css at or around line 228 you could change
Code:
#productPrices {text-align: center;}
to:
Code:
#productPrices {text-align: center;width: 300px;}
and this would force the box to be larger for this product; however, the next product may have longer text and have to wrap around. Or could use
Code:
#productPrices {text-align: center;min-width: 300px;}
if want the box grow larger as necessary but not to be any smaller than that value.
Trust me there are other ways to accomplish this, and probably far better ways, but that is what I know, and the current limited extent of what I know how to do with CSS. :)
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
favjola
hi
i installed the template , is good..
I, however, '2 problems
1 on the product page the box on the right go down '! right above the footer
I tried to change the settings (show box min-with on/off) but to not resolved
http://www.ganciotraino.eu/gancio-tr...mamc-p-72.html
-----------
2 even though I changed the layout setting the width of the box, this does not change reality in the frontend!
thanks
1. My guess is that you have some "bad" code in your product description that is breaking the responsive design and causing the left hand column to be in the wrong spot. Look for a div that is not closed or something similar.
2. The template is designed to use 180 px wide for the sidebox widths.
Thanks,
Anne
Re: Responsive Sheffield Blue
Hi Anne,
I installed your responsive template and I believe following all of well documented instructions. When I reduce the size of the browser on my PC or view in a mobile device the language icon disappears. I checked this on the demonstration site http://zenlyzen.com/responsive/index.php? and found the language icon disappears in the demonstration site too. Is there a way to have the language icon visible when viewing with a mobile device?
Using ZenCart 1.3.9h
Google Chrome 32.0.1700.102 m & IE11
Mobile devices use Chrome
Re: Responsive Sheffield Blue
hi mc 12345678
is solved the point 1 : the box right now is ok .... to right in all the page
but not resolved to modified the size of the sidebox!!!!!
i modified the css ,, and upload a file af 300 px in the sidebox right.... i set to 300 px to page admin layout controller the box righ....!!!!
the box is always at 160 px
http://www.ganciotraino.eu/
how modified this value to css (css of template default or css of this template) ??
thanks
ps: excuse for my english.. im italian
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
cjcraven
Hi Anne,
I installed your responsive template and I believe following all of well documented instructions. When I reduce the size of the browser on my PC or view in a mobile device the language icon disappears. I checked this on the demonstration site
http://zenlyzen.com/responsive/index.php? and found the language icon disappears in the demonstration site too. Is there a way to have the language icon visible when viewing with a mobile device?
Using ZenCart 1.3.9h
Google Chrome 32.0.1700.102 m & IE11
Mobile devices use Chrome
This is the correct behaviour of the template. If you want the language/currencies to show in the header in the smaller widths you can remove the display:none; on the #header-lan-curr in the responsive.css file
Thanks,
Anne
Re: Responsive Sheffield Blue
Re: Responsive Sheffield Blue
I didn't find any post regarding this so just in case, the "tell a friend" button was missing in includes/language/english (or other language) button_names.php. I added the following lines to see the button and alternative text;
In define the button images used in the project
define('BUTTON_IMAGE_TELLAFRIEND', 'button_tell_a_friend.gif');
define('BUTTON_IMAGE_TELL_A_FRIEND', 'button_tell_a_friend.gif');
In ALT tags used for buttons
define('BUTTON_TELLAFRIEND_ALT', 'Tell A Friend');
define('BUTTON_TELL_A_FRIEND_ALT', 'Tell A Friend');
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
salvo72
hi mc 12345678
is solved the point 1 : the box right now is ok .... to right in all the page
but not resolved to modified the size of the sidebox!!!!!
i modified the css ,, and upload a file af 300 px in the sidebox right.... i set to
300 px to page admin layout controller the box righ....!!!!
the box is always at
160 px
http://www.ganciotraino.eu/
how modified this value to css (css of template default or css of this template) ??
thanks
ps: excuse for my english.. im italian
i do not understand in the last template the box is to the size definied in layout controller 300px .... end in this template ...no??!!
Re: Responsive Sheffield Blue
Quote:
Originally Posted by
cjcraven
I didn't find any post regarding this so just in case, the "tell a friend" button was missing in includes/language/english (or other language) button_names.php. I added the following lines to see the button and alternative text;
In define the button images used in the project
define('BUTTON_IMAGE_TELLAFRIEND', 'button_tell_a_friend.gif');
define('BUTTON_IMAGE_TELL_A_FRIEND', 'button_tell_a_friend.gif');
In ALT tags used for buttons
define('BUTTON_TELLAFRIEND_ALT', 'Tell A Friend');
define('BUTTON_TELL_A_FRIEND_ALT', 'Tell A Friend');
This is missing on purpose. The tell a friend button was removed in version 1.5x. You should be using this version of zen cart with my responsive templates.
Thanks,
Anne