Page 10 of 21 FirstFirst ... 8910111220 ... LastLast
Results 91 to 100 of 201
  1. #91
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    nick pm me your email and i will send the a updated file that will fix your issue you mentioned in prvious post. I have been having some issue log into zencart.

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

    Default Re: Responsive Classic Redesign Support thread

    Just an FYI on this template

    I’ve made a number of updates to the template over the past week.

    I’ve also streamlined the top navigation bar. You can now easily reorder items or move the hamburger menu to the left or right using the CSS order property—no code changes needed.

    In addition, I addressed all the feedback from earlier and cleaned up the layout by removing unnecessary grid elements and replacing them with flexbox. This makes the layout more stable and ensures that adding new elements won’t break the design.

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

    Default Re: Responsive Classic Redesign Support thread

    Just an FYI on this template

    I’ve made a number of updates to the template over the past week. - you can grab latest version on github

    I’ve also streamlined the top navigation bar. You can now easily reorder items or move the hamburger menu to the left or right using the CSS order property—no code changes needed.

    In addition, I addressed all the feedback from earlier and cleaned up the layout by removing unnecessary grid elements and replacing them with flexbox. This makes the layout more stable and ensures that adding new elements won’t break the design.

  4. #94
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by chadlly2003 View Post
    nick pm me your email and i will send the a updated file that will fix your issue you mentioned in prvious post. I have been having some issue log into zencart.
    Thank you for the provided changes/file.

    2 issues though:

    - my hamburger menu is on the right but the menu pops out on the left when clicked

    - the search header looked "shrinked" a little and how can i get it to the right? it is too close to my logo

    https://www.royal-fleur.com/belvedere/

    Thank you for the assistance

  5. #95
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    nick i sent you an email with the adjustments you wanted.

  6. #96
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by nicksab View Post
    Thank you for the provided changes/file.

    2 issues though:

    - my hamburger menu is on the right but the menu pops out on the left when clicked

    - the search header looked "shrinked" a little and how can i get it to the right? it is too close to my logo

    https://www.royal-fleur.com/belvedere/

    Thank you for the assistance
    It looks like a lot of changes but i did this more to match your site. I wanted to show you the changes I made to make this happen

    stylesheet_custom_navigation.css
    Line 12

    change find:
    Code:
     left:0;
    change to

    Code:
    right:0;

    line:40;
    find:
    Code:
    translateX(-300px)
    change to
    find:
    Code:
    translateX(300px)
    stylesheet_zcustom.css
    find
    line:4029
    Code:
    div#logo {
    max-width:100% !important;
    width:100% !important;
    margin-left:0px;
    }
    replace with
    Code:
    div#logo {
    max-width:400px !important;
    width:100% !important;
    margin-left:0px;
    }
    
    .search_box form {
      display:flex;
    }
    LINE 3870
    find
    Code:
    .search_box {
        display: block;
        text-align: center;
        margin-left: 1.5rem;
    replace with
    Code:
    .search_box {
        display: block;
        text-align: center;
        margin-left: 1.5rem;
        flex-grow:1;
    line 2702
    find
    Code:
    .button.button_search {
     width: auto !important;
    }
    change to
    Code:
    .button.button_search {
     width: auto !important;
     margin-left:0px;
    }
    Last edited by chadlly2003; 22 Sep 2025 at 10:40 PM.

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

    Default Re: Responsive Classic Redesign Support thread

    have one more suggestion to make the home page images extend correctly


    stylesheet_zcustom.css. This will make your homepage image cover the full width
    after line 2748 add this
    Code:
     
         #indexHomeBody  .rblockelements {
             display: grid;
             grid-template-columns: repeat(3, 1fr);
             gap: 1rem;
         }

  8. #98
    Join Date
    Apr 2011
    Posts
    586
    Plugin Contributions
    0

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by chadlly2003 View Post
    have one more suggestion to make the home page images extend correctly


    stylesheet_zcustom.css. This will make your homepage image cover the full width
    after line 2748 add this
    Code:
     
         #indexHomeBody  .rblockelements {
             display: grid;
             grid-template-columns: repeat(3, 1fr);
             gap: 1rem;
         }

    Thank you for the help.

    he header looks better ( see screenshot attached) but search header is a bit long now.

    Click image for larger version. 

Name:	Screenshot 2025-09-23 at 17-59-37 Florist Belvedere CA Local Flower Delivery Belvedere Florist.jpg 
Views:	14 
Size:	14.5 KB 
ID:	21047

    Would it be possible to have the search header to the right and shorter?

    I attached a photoshop look to show what I am after.

    Click image for larger version. 

Name:	photoshop desired look.jpg 
Views:	12 
Size:	13.8 KB 
ID:	21048

    I also did some css touch up on the one page checkout page / login and it is getting close.

  9. #99
    Join Date
    Jan 2015
    Posts
    726
    Plugin Contributions
    1

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by nicksab View Post
    Thank you for the help.

    he header looks better ( see screenshot attached) but search header is a bit long now.

    Click image for larger version. 

Name:	Screenshot 2025-09-23 at 17-59-37 Florist Belvedere CA Local Flower Delivery Belvedere Florist.jpg 
Views:	14 
Size:	14.5 KB 
ID:	21047

    Would it be possible to have the search header to the right and shorter?

    I attached a photoshop look to show what I am after.

    Click image for larger version. 

Name:	photoshop desired look.jpg 
Views:	12 
Size:	13.8 KB 
ID:	21048

    I also did some css touch up on the one page checkout page / login and it is getting close.

    just put this at the bottom of your stylesheet custom.css.


    Code:
    @media (min-width: 992px) {
    	.search_box form {
       	display:flex;
       	}
    
      	.search_box {
         	flex-grow:0.5;margin-left:auto;
      	}
     
    	.shoppingcart {margin-left:0 !important;}
     	}
    
    }
    Just a suggestion. When you view your responsiveness at 992px the logo is a bit large. Might want to make it a little smaller.


    Nick if you have anymore feedback for the template please let me know. Was it easy to make changes. I did make a lot of adjustments based off of your previous post.

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

    Default Re: Responsive Classic Redesign Support thread

    Quote Originally Posted by chadlly2003 View Post
    just put this at the bottom of your stylesheet custom.css.


    Code:
    @media (min-width: 992px) {
    	.search_box form {
       	display:flex;
       	}
    
      	.search_box {
         	flex-grow:0.5;margin-left:auto;
      	}
     
    	.shoppingcart {margin-left:0 !important;}
     	}
    
    }
    Just a suggestion. When you view your responsiveness at 992px the logo is a bit large. Might want to make it a little smaller.


    Nick if you have anymore feedback for the template please let me know. Was it easy to make changes. I did make a lot of adjustments based off of your previous post.
    Thank you Chad. It worked perfectly

 

 
Page 10 of 21 FirstFirst ... 8910111220 ... 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