Page 14 of 21 FirstFirst ... 41213141516 ... LastLast
Results 131 to 140 of 201
  1. #131
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: Responsive Classic Redesign Support thread

    Removing the css code that was previously added in stylesheet_zcustom.css and switching display from grid to flex ( see code below) seems to have fix my first issue.

    Code:
    @media (min-width: 992px) {
      #contentMainWrapper {
        display: grid;
        grid-template-columns: auto 1fr auto;}
    }
    to


    Code:
    @media (min-width: 992px) {
      #contentMainWrapper {
        display: flex;}
    }
    I am not sure how to fix the opc overlay problem when the hamburger menu is out. The demo site has not issue though.

  2. #132
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by nicksab View Post
    Finally managed to get the opc css file on my site.

    It looks great and it is almost there layout wise.

    I just a couple of issues:

    - cart only fills up half of the column

    - when the hamburger menu is clicked, the overlay of OPC ( gray shadow) covers the menu and makes it unclickable

    - input fields are too big

    Thank you in advance for the help


    Nick, just go to

    stylesheet_custom_navigation.css

    go to line 54
    .sidebar

    change
    z-index:1

    to
    z-index:3;

  3. #133
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by nicksab View Post
    Removing the css code that was previously added in stylesheet_zcustom.css and switching display from grid to flex ( see code below) seems to have fix my first issue.

    Code:
    @media (min-width: 992px) {
      #contentMainWrapper {
        display: grid;
        grid-template-columns: auto 1fr auto;}
    }
    to


    Code:
    @media (min-width: 992px) {
      #contentMainWrapper {
        display: flex;}
    }
    I am not sure how to fix the opc overlay problem when the hamburger menu is out. The demo site has not issue though.
    Nick real quick i noticed you still have old code in your stylesheet_z_custom.css

    remove this
    Code:
    .opc-view {
      position: relative;
      z-index: 2;
      box-shadow: 3px 3px 5px 6px #ccc;
      margin-bottom: 2rem;
      border: solid 1px #ccc;
      background: #fff;
      padding:1rem;
      padding-bottom: 2rem;
    }
    
    #checkoutOneShipto {margin:1rem;}
    #checkout_payment .clearBoth {display:none !important;}
    
     
    
    
    @media (min-width: 992px) {
    #checkoutoneBody .floatingBox {width:49%;}
    #checkoutOneShoppingCart {float:left;width:49%; margin-left:1rem;}
    
    }

  4. #134
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by nicksab View Post
    Removing the css code that was previously added in stylesheet_zcustom.css and switching display from grid to flex ( see code below) seems to have fix my first issue.

    Code:
    @media (min-width: 992px) {
      #contentMainWrapper {
        display: grid;
        grid-template-columns: auto 1fr auto;}
    }
    to


    Code:
    @media (min-width: 992px) {
      #contentMainWrapper {
        display: flex;}
    }
    I am not sure how to fix the opc overlay problem when the hamburger menu is out. The demo site has not issue though.

    I think this might be a better option the resizing your inputs for opc.
    stylesheet_zcustom
    Line 267
    ** need to change background to transparent;"

    Code:
    #checkoutoneBody .opc-view {
        position: relative;
        z-index: 2;
        box-shadow: 3px 3px 5px 6px #ccc;
        padding: 1rem;
        background: #fff;
        margin-bottom: 1.5rem;
        border-radius: 5px;
    }
    Site looking good. Just one thing i noticed on your product page the drop down for the date is not aligning correctly.
    path: stylesheet_dp_theme.css
    add to the very bottom of stylesheet

    Code:
    #ui-datepicker-div {
    	width:auto
    }

  5. #135
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by chadlly2003 View Post
    Nick, just go to

    stylesheet_custom_navigation.css

    go to line 54
    .sidebar

    change
    z-index:1

    to
    z-index:3;
    thanks for that. it worked

  6. #136
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by chadlly2003 View Post
    Nick real quick i noticed you still have old code in your stylesheet_z_custom.css

    remove this
    Code:
    .opc-view {
      position: relative;
      z-index: 2;
      box-shadow: 3px 3px 5px 6px #ccc;
      margin-bottom: 2rem;
      border: solid 1px #ccc;
      background: #fff;
      padding:1rem;
      padding-bottom: 2rem;
    }
    
    #checkoutOneShipto {margin:1rem;}
    #checkout_payment .clearBoth {display:none !important;}
    
     
    
    
    @media (min-width: 992px) {
    #checkoutoneBody .floatingBox {width:49%;}
    #checkoutOneShoppingCart {float:left;width:49%; margin-left:1rem;}
    
    }
    i removed all the old code that was previously added ( i think)

    Unfortunately, I am back to having OPC display on the left side in a small columns instead of full screen.

  7. #137
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by nicksab View Post
    i removed all the old code that was previously added ( i think)

    Unfortunately, I am back to having OPC display on the left side in a small columns instead of full screen.
    hmm for some reason the #contentMainWrapper is display as grid.

    this will solve your issue

    stylesheet_zcustom.css
    line 3891

    find
    Code:
      
       #contentMainWrapper {
             display: grid;
             grid-template-columns: auto 1fr auto;
         }
    change to

    Code:
      #contentMainWrapper {
             display: flex;
             
         }

  8. #138
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by chadlly2003 View Post
    hmm for some reason the #contentMainWrapper is display as grid.

    this will solve your issue

    stylesheet_zcustom.css
    line 3891

    find
    Code:
      
       #contentMainWrapper {
             display: grid;
             grid-template-columns: auto 1fr auto;
         }
    change to

    Code:
      #contentMainWrapper {
             display: flex;
             
         }
    instead lets do this so it does not impact anything else on your template
    add to the bottom of stylesheet_zcustom.css
    Code:
    #checkoutoneBody #contentMainWrapper {
             display: flex !important;
             
         }

  9. #139
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by chadlly2003 View Post
    instead lets do this so it does not impact anything else on your template
    add to the bottom of stylesheet_zcustom.css
    Code:
    #checkoutoneBody #contentMainWrapper {
             display: flex !important;
             
         }
    I think this is it! Thanks for all the helps . My updated site version is finally live at belvedere-florist.com

    Still need a few tweaks here and there but the template looks awesome

  10. #140
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: Responsive Classic Redesign Support thread

    Spoke too soon and I have another suggestions:

    When on mobile and the hamburger menu is pulled out, it can only be closed by tapping outside of the menu.

    It is a little tricky to do on small screen.

    Would it be possible to add an "X" in the corner or similar that would close the menu?

    Hope that makes sense

 

 
Page 14 of 21 FirstFirst ... 41213141516 ... LastLast

Similar Threads

  1. v155 Responsive Classic (built in to Zen Cart v1.5.5) [Support Thread]
    By picaflor-azul in forum Templates, Stylesheets, Page Layout
    Replies: 1087
    Last Post: 18 Jan 2025, 07:23 PM
  2. v155 Tableau 2 Responsive Theme - Support Thread
    By numinix in forum Addon Templates
    Replies: 24
    Last Post: 24 Jan 2023, 04:05 AM
  3. v156 ZCA Responsive Classic Template for 1.5.6 [Support Thread]
    By rbarbour in forum Addon Templates
    Replies: 31
    Last Post: 15 Nov 2019, 04:21 PM
  4. 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
  5. Bentley Classic Template Support Thread
    By picaflor-azul in forum Addon Templates
    Replies: 173
    Last Post: 17 Sep 2013, 08:25 PM

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