Page 46 of 116 FirstFirst ... 3644454647485696 ... LastLast
Results 451 to 460 of 1160
  1. #451
    Join Date
    Aug 2011
    Posts
    34
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by picaflor-azul View Post
    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

  2. #452
    Join Date
    Jul 2012
    Posts
    16,798
    Plugin Contributions
    17

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by favjola View Post
    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. :)
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

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

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by favjola View Post
    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

  4. #454
    Join Date
    Aug 2004
    Location
    Osaka Japan
    Posts
    163
    Plugin Contributions
    0

    Default 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
    Last edited by cjcraven; 2 Feb 2014 at 07:37 AM.

  5. #455
    Join Date
    Feb 2013
    Posts
    45
    Plugin Contributions
    0

    Default 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

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

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by cjcraven View Post
    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

  7. #457
    Join Date
    Aug 2004
    Location
    Osaka Japan
    Posts
    163
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Thank you!

  8. #458
    Join Date
    Aug 2004
    Location
    Osaka Japan
    Posts
    163
    Plugin Contributions
    0

    Default 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');

  9. #459
    Join Date
    Feb 2013
    Posts
    45
    Plugin Contributions
    0

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by salvo72 View Post
    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??!!

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

    Default Re: Responsive Sheffield Blue

    Quote Originally Posted by cjcraven View Post
    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

 

 
Page 46 of 116 FirstFirst ... 3644454647485696 ... 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