Hello @annabelleg21 ,
Greetings!!
My mistake
Can you please again paste this code as instructions
This code for, “Is there a way I can get the SHOP Menu item to remain active when clicking through to a product? at the moment it disappears”
Ans:
Online Store->Theme->Edit code->Layouts->theme.liquid and Add this code at the bottom of file
{% if template.name == 'collection' or template.name == 'product' %}
<style>
.list-menu.list-menu--inline>li:first-child span {
position: relative;
}
.list-menu.list-menu--inline>li:first-child span:after{
position: absolute;
content: "";
bottom: 0;
left: 0;
width: 100%;
opacity: 1;
transform: scale(1);
text-decoration: none;
transform-origin: left center;
border-bottom: 2px solid #686565;
transition: transform .3s,opacity .3s;
}
</style>
{% endif %}