Page 73 of 126 FirstFirst ... 2363717273747583123 ... LastLast
Results 721 to 730 of 1252
  1. #721
    Join Date
    Sep 2010
    Posts
    17
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Read this thread (this is for centering the logo - replace Center with Right)

    https://www.zen-cart.com/showthread....go#post1387955

  2. #722
    Join Date
    Sep 2010
    Posts
    17
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by AlgellA View Post
    Lovely template but I cannot see where I can right-align the logo image?
    Read this thread (this is for centering the logo - replace Center with Right)

    https://www.zen-cart.com/showthread....go#post1387955

  3. #723
    Join Date
    Jul 2011
    Posts
    27
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    While trying to adjust the css to change all backgrounds to black using ZCA bootstrap colors in Admin I am still having trouble with the product listing pages. Despite everything changed to black background these pages are still showing up with a white background. CSS element inspection shows it is being inherited from .card (my css knowledge is slightly above zero so this could be incorrect). If I uncheck the 'background-color: #fff; in the inspector it switches to the correct black background color. All other aspects of the bootstrap template seem to be showing up correctly.

  4. #724
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,151
    Plugin Contributions
    11

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by roodney View Post
    While trying to adjust the css to change all backgrounds to black using ZCA bootstrap colors in Admin I am still having trouble with the product listing pages. Despite everything changed to black background these pages are still showing up with a white background. CSS element inspection shows it is being inherited from .card (my css knowledge is slightly above zero so this could be incorrect). If I uncheck the 'background-color: #fff; in the inspector it switches to the correct black background color. All other aspects of the bootstrap template seem to be showing up correctly.
    Bootstrap comes with includes/templates/bootstrap/css/dist-site_specific_styles.php.
    You can take that file, add the specific styles that you need and save it as includes/templates/your_template/css/site_specific_styles.php. Of course, if you could post the URL, more help can be provided with a look at the site. Use something like your_siteDOTcom if you don't want the Search Engines looking just yer.

  5. #725
    Join Date
    Apr 2011
    Posts
    383
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    currently using Zc 1.5.7 with Bootstrap 3.3.0 template.

    Is it possible to have the menu from the "hamburger" coming from the side as opposed to dropdown when on mobile/tablet?

    site is at royal-fleur.com/upgrade if needed.

    Thank you

  6. #726
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,491
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by nicksab View Post
    currently using Zc 1.5.7 with Bootstrap 3.3.0 template.

    Is it possible to have the menu from the "hamburger" coming from the side as opposed to dropdown when on mobile/tablet?

    site is at royal-fleur.com/upgrade if needed.

    Thank you
    I'm sure it is ... with customization. That's one of the benefits of the Bootstrap template, since it uses a standard interface for its display. You can Google bootstrap 4 hamburger side menu for some ideas.

  7. #727
    Join Date
    Apr 2011
    Posts
    383
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by lat9 View Post
    I'm sure it is ... with customization. That's one of the benefits of the Bootstrap template, since it uses a standard interface for its display. You can Google bootstrap 4 hamburger side menu for some ideas.
    Thank you. I took a quick look at it and seems a bit more challenging than i thought and may create more issues down the line. That will have to wait for now.

  8. #728
    Join Date
    Apr 2011
    Posts
    383
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    I need help with the login page.

    I would like to invert the login display/order.

    By default, it displays the returning customer form and link first .

    I would like the new customer/ create account to be first instead.

    I changed the code in tpl_login_default.php from
    Code:
    nav class="pt-3">
      <div class="nav nav-tabs" id="nav-tab" role="tablist">
       
    
    	<a class="nav-item nav-link" id="nav-login-tab" data-toggle="tab" href="#nav-login" role="tab" aria-controls="nav-home" aria-selected="true"><?php echo HEADING_RETURNING_CUSTOMER; ?></a> 
    
       <a class="nav-item nav-link active" id="nav-create-tab" data-toggle="tab" href="#nav-create" role="tab" aria-controls="nav-profile" aria-selected="false"><?php echo HEADING_NEW_CUSTOMER; ?></a>
      </div>
    </nav>
    to

    Code:
    nav class="pt-3">
      <div class="nav nav-tabs" id="nav-tab" role="tablist">
       
        <a class="nav-item nav-link active" id="nav-create-tab" data-toggle="tab" href="#nav-create" role="tab" aria-controls="nav-profile" aria-selected="true"><?php echo HEADING_NEW_CUSTOMER; ?></a>
    	<a class="nav-item nav-link" id="nav-login-tab" data-toggle="tab" href="#nav-login" role="tab" aria-controls="nav-home" aria-selected="false"><?php echo HEADING_RETURNING_CUSTOMER; ?></a>
      </div>
    </nav>
    So far the tab order has been inverted as expected.

    However, the form being displayed is incorrect. It shows the "returning/login form " by default instead of the "create account form"

    How can i fix this please?

    The site is at www.royal-fleur.com/upgrade.

    Thank you for all your help

  9. #729
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,491
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by nicksab View Post
    I need help with the login page.

    I would like to invert the login display/order.

    By default, it displays the returning customer form and link first .

    I would like the new customer/ create account to be first instead.

    I changed the code in tpl_login_default.php from
    Code:
    nav class="pt-3">
      <div class="nav nav-tabs" id="nav-tab" role="tablist">
       
    
        <a class="nav-item nav-link" id="nav-login-tab" data-toggle="tab" href="#nav-login" role="tab" aria-controls="nav-home" aria-selected="true"><?php echo HEADING_RETURNING_CUSTOMER; ?></a> 
    
       <a class="nav-item nav-link active" id="nav-create-tab" data-toggle="tab" href="#nav-create" role="tab" aria-controls="nav-profile" aria-selected="false"><?php echo HEADING_NEW_CUSTOMER; ?></a>
      </div>
    </nav>
    to

    Code:
    nav class="pt-3">
      <div class="nav nav-tabs" id="nav-tab" role="tablist">
       
        <a class="nav-item nav-link active" id="nav-create-tab" data-toggle="tab" href="#nav-create" role="tab" aria-controls="nav-profile" aria-selected="true"><?php echo HEADING_NEW_CUSTOMER; ?></a>
        <a class="nav-item nav-link" id="nav-login-tab" data-toggle="tab" href="#nav-login" role="tab" aria-controls="nav-home" aria-selected="false"><?php echo HEADING_RETURNING_CUSTOMER; ?></a>
      </div>
    </nav>
    So far the tab order has been inverted as expected.

    However, the form being displayed is incorrect. It shows the "returning/login form " by default instead of the "create account form"

    How can i fix this please?

    The site is at www.royal-fleur.com/upgrade.

    Thank you for all your help
    There's a configuration setting, One-Page Checkout Settings :: Login-Page Layout, that can be used to control the (er) layout of the login page without code modification.

    Noting also that the link you identified results in a 404.

  10. #730
    Join Date
    Apr 2011
    Posts
    383
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap 4 Template [Support Thread]

    Quote Originally Posted by lat9 View Post
    There's a configuration setting, One-Page Checkout Settings :: Login-Page Layout, that can be used to control the (er) layout of the login page without code modification.

    Noting also that the link you identified results in a 404.
    Sorry about the non working link. Somehow a "dot" got added to the link.

    The site is at https://www.royal-fleur.com/upgrade/...ain_page=login.

    I did look at the OPC login page layout but i like the tab look better over the "box" look of OPC.

    What i am trying to achieve is to have potential customer entering their information right after shopping cart page and offer a link to login if they are returning customer. Right now, it is doing the opposite. In my industry, customer is usually first/one time client. If they do returns, they just create a new account because of not remembering the login of their previous one.

 

 

Similar Threads

  1. v155 Clone a Template [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 94
    Last Post: 16 Mar 2024, 04:13 PM
  2. v150 aBagon Template Support Thread
    By VJef in forum Addon Templates
    Replies: 54
    Last Post: 5 Sep 2020, 08:44 PM
  3. v155 ZCA Bootstrap Template 1.0 (BETA)
    By rbarbour in forum Addon Templates
    Replies: 74
    Last Post: 25 Apr 2018, 07:05 PM
  4. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 48
    Last Post: 19 Mar 2015, 06:33 PM
  5. Wallet Template - Support Thread
    By zami in forum Addon Templates
    Replies: 45
    Last Post: 25 Mar 2010, 10:15 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