Page 67 of 108 FirstFirst ... 1757656667686977 ... LastLast
Results 661 to 670 of 1072
  1. #661
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Quote Originally Posted by idtags View Post
    Thank you, this resolves the problem with image.

    Can you advise on second question: On the same page under image, how to increase slightly spacing between lines?
    Inspect Element option does not show any parameter in CSS it could be done.
    We can not find spacing control in CK-Editor as well.
    How people handle it?

    Any suggestion is appreciated.
    Lot of information in googling... css line height gets this page https://www.w3schools.com/cssref/pr_dim_line-height.asp

    You can add your own style sheet or attach to an existing element..
    Dave
    Always forward thinking... Lost my mind!

  2. #662
    Join Date
    Aug 2005
    Posts
    334
    Plugin Contributions
    0

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Quote Originally Posted by davewest View Post
    Lot of information in googling... css line height gets this page https://www.w3schools.com/cssref/pr_dim_line-height.asp

    You can add your own style sheet or attach to an existing element..
    Thank you for pointing in right direction.
    This site opened a "new world" and i got an idea that these codes can be added to CCS in custom folder.

    Thank you again it worked!.

  3. #663
    Join Date
    Aug 2005
    Posts
    334
    Plugin Contributions
    0

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Quote Originally Posted by soxophoneplayer View Post
    I don't recall signing in or signing up for this - I think whoever put the code in the template file originally likely did to get the script. I checked out your link and it looks like you can get other formats of the same thing which you would use in place of what I did. (Also - it was several years ago that I did this and may have forgotten something, but I don't think so.) Maybe try putting the code in (after backing up of course) and see what if it works for you, or try on a test site if you have.
    Thank you again for explanation.
    I tested it and it works!

    Now we need to create all these social media accounts.

  4. #664
    Join Date
    Aug 2013
    Location
    Perth, WA, AU
    Posts
    167
    Plugin Contributions
    1

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Quote Originally Posted by royaldave View Post
    my bad - test site -

    http://61.245.139.145/zencart/
    my bad again .. son turned off test linux box because it was 'too noisy' - up again ...

  5. #665
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,106
    Plugin Contributions
    11

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Quote Originally Posted by royaldave View Post
    my bad again .. son turned off test linux box because it was 'too noisy' - up again ...
    Can't even get to checkout in mobile. WAY too many problems with the site. Your hover over Home, Log In, etc is set to the wrong color. That's a common foul up when dealing with the responsive classic without breaking out the colors.

    I cannot get the mobile to give me any screen but log in.

  6. #666
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,227
    Plugin Contributions
    6

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    I have EZ Pages set up on my site, some of which are not displayed in the header, and are only available in the sidebar.

    The code for displaying ezpages in the mobile menu is:

    PHP Code:
    <?php  include(DIR_WS_MODULES zen_get_module_directory('ezpages_bar_header.php'));  if (sizeof($var_linksList) >= 1) {    for ($i=1$n=sizeof($var_linksList); $i<=$n$i++) {      echo '<li><a href="' $var_linksList[$i]['link'] . '">' $var_linksList[$i]['name'] . '</a></li>' "\n";    }  }?>
    So what do I need to change this to in order to display the ezpages links that are available in the sidebar? (the ezpages that are available in the header are also available in the sidebar).

    I tried this but it doesn't display properly.

    PHP Code:
    <?php  include(DIR_WS_MODULES zen_get_module_directory('sidebar/ezpages.php'));  if (sizeof($var_linksList) >= 1) {    for ($i=1$n=sizeof($var_linksList); $i<=$n$i++) {      echo '<li><a href="' $var_linksList[$i]['link'] . '">' $var_linksList[$i]['name'] . '</a></li>' "\n";    }  }?>
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

  7. #667
    Join Date
    Jun 2007
    Location
    Eustis, Florida, USA, EARTH
    Posts
    836
    Plugin Contributions
    0

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    I just acquired an Ipad2 at a yard sale. Good score for $20. But zencart has a horrible rendering with safari. Then I realized that I had jscript disable in safari settings. After enabling jscript it works fine.

  8. #668
    Join Date
    Sep 2013
    Location
    Texas
    Posts
    304
    Plugin Contributions
    0

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    ZC 1.55.5f Responsive_classic
    Apache Version 2.4.34
    PHP Version 7.0
    MySQL Version 10.2.18-MariaDB
    Plugins:
    ColumnGridLayout_for_155f
    CheckBoxTextBoxIconV1.0.3

    (possible oversight) with the responsive_classic template.

    I need a way to hide specific categories in the Mobile sidebox menu.

    When using the below method to hide a category the designated Category [ID#2} gets hidden in the {full screen} sidebox menu but NOT in Category Tabs menu.
    This causes the sidebox menu in Mobile to NOT hide the designated Category as I believe it uses the Category Tabs code.
    Existing code:
    Code:
    /includes/templates/responsive_classic/sideboxes/tpl_categories.php
    // to make a specific category stand out define a new class in the stylesheet example: A.category-holiday
    // uncomment the select below and set the cPath=3 to the cPath= your_categories_id
    // many variations of this can be done
    //      case ($box_categories_array[$i]['path'] == 'cPath=3'):
    //        $new_style = 'category-holiday';
    //        break;
    
        case ($box_categories_array[$i]['path'] == 'cPath=2'):
            $new_style = 'category_hide';
            break;
        case ($box_categories_array[$i]['path'] == 'cPath=1'):
            $new_style = 'category_hide1';
            break;
       case ($box_categories_array[$i]['path'] == 'cPath=3'):
            $new_style = 'category_hide2';
            break;
    Code:
    CSS:
    includes/templates/responsive_classic/css/stylesheet.css
    /* Hide Categories but are clickable*/
    A.category_hide {
    	color: #000000;
    	font-size:14px;
    	text-decoration: none;
    }
    /* Display but make specific categories unclickable */
    A.category_hide1, A.category_hide2 {
    	cursor: pointer;
    	font-weight: normal;
    	line-height: 175%;
    	pointer-events: none;
    	text-decoration: none;
    	display: inline-block;
    }
    Thanks, for your time.

  9. #669
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,227
    Plugin Contributions
    6

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Quote Originally Posted by Nick1973 View Post
    I have EZ Pages set up on my site, some of which are not displayed in the header, and are only available in the sidebar.

    The code for displaying ezpages in the mobile menu is:

    PHP Code:
    <?php  include(DIR_WS_MODULES zen_get_module_directory('ezpages_bar_header.php'));  if (sizeof($var_linksList) >= 1) {    for ($i=1$n=sizeof($var_linksList); $i<=$n$i++) {      echo '<li><a href="' $var_linksList[$i]['link'] . '">' $var_linksList[$i]['name'] . '</a></li>' "\n";    }  }?>
    So what do I need to change this to in order to display the ezpages links that are available in the sidebar? (the ezpages that are available in the header are also available in the sidebar).

    I tried this but it doesn't display properly.

    PHP Code:
    <?php  include(DIR_WS_MODULES zen_get_module_directory('sidebar/ezpages.php'));  if (sizeof($var_linksList) >= 1) {    for ($i=1$n=sizeof($var_linksList); $i<=$n$i++) {      echo '<li><a href="' $var_linksList[$i]['link'] . '">' $var_linksList[$i]['name'] . '</a></li>' "\n";    }  }?>

    Does anybody have an answer to this please? I am looking to display ALL my EZ Pages in the mobile menu, not the ones that are checked in the admin just for the header. So no matter if they are checked for Header, Sidebar, Footer, they should ALL display in the mobile menu. Tried a few things but none seem to work.
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

  10. #670
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,227
    Plugin Contributions
    6

    Default Re: Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]

    Quote Originally Posted by Nick1973 View Post
    Does anybody have an answer to this please? I am looking to display ALL my EZ Pages in the mobile menu, not the ones that are checked in the admin just for the header. So no matter if they are checked for Header, Sidebar, Footer, they should ALL display in the mobile menu. Tried a few things but none seem to work.
    I've resolved this myself now and created a module which is currently under review. Will post a link here once its added to the module library.
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

 

 
Page 67 of 108 FirstFirst ... 1757656667686977 ... LastLast

Similar Threads

  1. v155 Support Thread - Responsive Color Changes for 155
    By dbltoe in forum Templates, Stylesheets, Page Layout
    Replies: 99
    Last Post: 1 Oct 2021, 12:31 PM
  2. v151 Tableau Responsive Theme - Support Thread
    By numinix in forum Addon Templates
    Replies: 622
    Last Post: 19 Apr 2020, 11:11 PM
  3. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Addon Templates
    Replies: 0
    Last Post: 17 Mar 2016, 12:30 AM
  4. v154 Order Steps Responsive [Support Thread]
    By davewest in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 5 Jul 2015, 06:11 PM
  5. Bentley Classic Template Support Thread
    By picaflor-azul in forum Addon Templates
    Replies: 173
    Last Post: 17 Sep 2013, 08:25 PM

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