Not without a link to the site.
Printable View
Not without a link to the site.
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
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.
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
Hi There,
Has anyone had any luck with webp images with bootstrap carousel, I've tried but no success.
Thanks in advance.
Using the carousel ... how? I can't think of a reason why that image type wouldn't work.
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.