Shopify themes, liquid, logos, and UX
Hi - I am wanting to remove the Collection Title on the "Collection List" section on the Ride Theme. I added the name of the collection to the image itself so I no longer need the title under the image. Any help would be appreciated!
Solved! Go to the solution
This is an accepted solution.
oh sorry for that issue can you try this code
1. Go to Online Store->Theme->Edit code
2. Asset->/base.css ->paste below code at the bottom of the file.
.collection-list-wrapper .card__content {
position: absolute;
height: 100%;
opacity: 0;
}
Hello @delta1seven1
Can you please share your store URL so i ca suggest you css code for hide the collection title on collection list section.
Edit your theme code,
Find the section-collection-list.css file,
Add code at the very bottom:
.card--card.card--media>.card__content{
display:none !important;
}
This did not seem to work 😞
1. Online store > Actions > Edit code
2. Open the file collection-grid-item.liquid
3. Remove the below code
<div class="collection-grid-item__title-wrapper">
<div class="collection-grid-item__title h3">
{% if collection.title == blank %}
{{ 'homepage.onboarding.collection_title' | t }}
{% else %}
{{ collection.title }}
{% endif %}
</div>
</div>
4. Click Save
Thank you for the reply but I don't seem to have that .liquid file.
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community!😊
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
Hi,
Please share your store URL and if your store is password protected then also provide password too.
Thank you.
Please add below css code in bottom of assets/base.css file.
Thanks for this. This removed the Title text, but it also removed the hyper-link functionality of the image. So now I can't click on the image to bring me to the collection. Any idea how to bring that functionality back?
Thanks
Thanks for this. This removed the Title text, but it also removed the hyper-link functionality of the image. So now I can't click on the image to bring me to the collection. Any idea how to bring that functionality back?
thanks!
This is an accepted solution.
oh sorry for that issue can you try this code
1. Go to Online Store->Theme->Edit code
2. Asset->/base.css ->paste below code at the bottom of the file.
.collection-list-wrapper .card__content {
position: absolute;
height: 100%;
opacity: 0;
}
This worked, thank you!
its my pleasure to help us
I did it! The Collection list no longer displays collection names either on the phone or computer. They also respond to clicks and redirect to the collection page. If anyone needs help, enter this code into theme.liquid immediately after <head>:
<style>
/* .card__content elementų parodymas tik telefonuose */
@media only screen and (max-width: 767px) {
.collection-list .card__content {
opacity: 1;
height: auto;
}
}
</style>
<style>
/* Visose įrenginių dydžio diapazonuose paslepia .card__content */
.collection-list .card__content {
opacity: 0;
height: 0;
}
</style>
Starting a B2B store is a big undertaking that requires careful planning and execution. W...
By JasonH Sep 23, 2024By investing 30 minutes of your time, you can unlock the potential for increased sales,...
By Jacqui Sep 11, 2024We appreciate the diverse ways you participate in and engage with the Shopify Communi...
By JasonH Sep 9, 2024