Page 99 of 132 FirstFirst ... 4989979899100101109 ... LastLast
Results 981 to 990 of 1316
  1. #981
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,616
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap Template

    Not without a link to the site.

  2. #982
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    976
    Plugin Contributions
    6

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by zamzom View Post
    [ZC 1.5.8][Bootstrap 3.5.2]
    Back-to-top button is sometimes covering important buttons.
    This is may be more of a style question but is there a way to push this button towards outside the main block meanwhile reducing rest of the block size especially on desktop view?
    Attachment 20287
    Have you tried this?

    In your css for the button insert clear:both (if clear:left or clear:right do not work)

    https://www.w3schools.com/cssref/pr_class_clear.php

    and/or apply margins eg margin-top:1em

    https://www.w3schools.com/cssref/pr_margin-top.php

    hope this helps

  3. #983
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,616
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by dw08gm View Post
    Have you tried this?

    In your css for the button insert clear:both (if clear:left or clear:right do not work)

    https://www.w3schools.com/cssref/pr_class_clear.php

    and/or apply margins eg margin-top:1em

    https://www.w3schools.com/cssref/pr_margin-top.php

    hope this helps
    I think that this could be solved via a CSS z-index setting; I'll take a look (eventually).

  4. #984
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,798
    Plugin Contributions
    124

    Default Re: ZCA Bootstrap Template

    As a suggestion, a template option to disable this button would be nice.

    I have removed it from includes/templates/bootstrap/common/tpl_main_page.php on quite a few sites.
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  5. #985
    Join Date
    Aug 2004
    Posts
    768
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    This would be more of a feature request, but is there an easy way to have the "Newsletter Subscribe" checkbox also featured on the checkout page?

    It would be the same exact code as seen on the Account Creation page, I'd imagine.

    Here's why. Since we have guest checkout, we want the opportunity to capture as many newsletter subscribers as possible. These are people who may not create an account, or perhaps may have forgotten that we offer a newsletter after they created their account.

    By also displaying the "Subscribe to our Newsletter" box on the checkbox page, it gives us one more opportunity to increase our mailing list since there's more daily orders vs daily account creations.

    Could you tell me what code to copy into which file in order to make that one of the boxes? It could look just like it does on the account creation page: https://i.postimg.cc/FHZHXvGH/Electr...Dimensions.png
    - Jeff

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

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by swguy View Post
    As a suggestion, a template option to disable this button would be nice.

    I have removed it from includes/templates/bootstrap/common/tpl_main_page.php on quite a few sites.
    Quote Originally Posted by Jeff_Mash View Post
    This would be more of a feature request, but is there an easy way to have the "Newsletter Subscribe" checkbox also featured on the checkout page?

    It would be the same exact code as seen on the Account Creation page, I'd imagine.

    Here's why. Since we have guest checkout, we want the opportunity to capture as many newsletter subscribers as possible. These are people who may not create an account, or perhaps may have forgotten that we offer a newsletter after they created their account.

    By also displaying the "Subscribe to our Newsletter" box on the checkbox page, it gives us one more opportunity to increase our mailing list since there's more daily orders vs daily account creations.

    Could you tell me what code to copy into which file in order to make that one of the boxes? It could look just like it does on the account creation page: https://i.postimg.cc/FHZHXvGH/Electr...Dimensions.png
    I've created GitHub issues to note these requests; they should be included in the next template release.

  7. #987
    Join Date
    Feb 2016
    Location
    Canada
    Posts
    148
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    Hi There,

    Has anyone had any luck with webp images with bootstrap carousel, I've tried but no success.

    Thanks in advance.

  8. #988
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,616
    Plugin Contributions
    88

    Default Re: ZCA Bootstrap Template

    Using the carousel ... how? I can't think of a reason why that image type wouldn't work.

  9. #989
    Join Date
    Feb 2016
    Location
    Canada
    Posts
    148
    Plugin Contributions
    0

    Default Re: ZCA Bootstrap Template

    my testing code is below

    <div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
    <ol class="carousel-indicators">
    <li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
    <li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
    <li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
    </ol>
    <div class="carousel-inner">
    <div class="carousel-item active">
    <img class="d-block w-100" src="images\banners\Toronto.webp" alt="First slide">
    <div class="carousel-caption d-none d-md-block">
    <h5>Toronto</h5>
    <p>Hello</p>
    </div>
    </div>
    <div class="carousel-item">
    <img class="d-block w-100" src="images\banners\PRIME-Header.webp" alt="Second slide">
    <div class="carousel-caption d-none d-md-block">
    <h5>Fever-Tree</h5>
    <p>Mixers</p>
    </div>
    </div>
    <div class="carousel-item">
    <img class="d-block w-100" src="images\banners\Essentia.webp" alt="Third slide">
    <div class="carousel-caption d-none d-md-block">
    <h5>Essentia</h5>
    <p>Water</p>
    </div>
    </div>
    </div>
    <a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
    <span class="carousel-control-prev-icon" aria-hidden="true"></span>
    <span class="sr-only">Previous</span>
    </a>
    <a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
    <span class="carousel-control-next-icon" aria-hidden="true"></span>
    <span class="sr-only">Next</span>
    </a>
    </div>

    the webp images not appear but if I use .jpg they do.

  10. #990
    Join Date
    Feb 2009
    Location
    UK
    Posts
    1,247
    Plugin Contributions
    1

    Default Re: ZCA Bootstrap Template

    Quote Originally Posted by allmart View Post
    Hi There,

    Has anyone had any luck with webp images with bootstrap carousel, I've tried but no success.

    Thanks in advance.
    What version of Zencart?

    Does the browser's dev tools give any clues? Perhaps under the Console or Network tabs.
    Last edited by simon1066; 16 May 2023 at 04:32 PM.
    Simon

 

 

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