Hello Guys,
I am facing issue on product page when click on button page not goto scroll down. Attached is screenshot I highlited in red color button when click on it page should be scroll down
Here is product page https://imperialhighlandsupplies.com/products/abbotsford-check-tartan
Here is code i am use.
Thank you
{% if product.type == 'Tartan Finder' %}
<style>
#go_down {
background: #3b0e57;
color: #fff;
border: 1px solid #3b0e57;
padding: 5px 10px;
cursor: pointer;
font-size: 16px;
margin: 15px 0;
width: 100%;
font-weight: bold;
}
</style>
<div style="text-align:center;">
<div id ="go_down">View Products in {{ product.title }}</div>
</div>
<div class="addthis_inline_share_toolbox"></div>
<script>
$("#go_down").click(function() {
$('html,body').animate({
scrollTop: $("#shopify-section-template--17448925298850__featured_collection_QT37GX").offset().top},
'slow');
// window.location.href = '/collections/tartan-finder';
});
</script>
{% endif %}
{% unless product.type == 'Tartan Finder' %}
<style>
#shopify-section-template--17448925298850__featured_collection_QT37GX {
display: none;
}
</style>
{% endunless %}

