How to remove arrows from collection list homepage and include subheading texts

lagentilestore
Excursionist
43 0 8

Hi!

I want to remove the arrows next to the collection titles on the homepage and i want to include subheading texts per collections. How can I do this?

Kind regards,
Els

Schermafbeelding 2023-01-31 om 15.14.20.png

Replies 5 (5)

techlyser_web
Shopify Partner
1406 263 277

Hello @lagentilestore 
please send your store URL so i can send you some solution about remove arrows from collection list

Techlyser || Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com
lagentilestore
Excursionist
43 0 8

Hi!

https://la-gentile.myshopify.com/

Do you also have an idea how I can include subheading texts per collections?

techlyser_web
Shopify Partner
1406 263 277

Hello @lagentilestore 

You can add code by following these steps to remove arrows on collections

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid


<style>

.card__heading .icon-wrap{
display:none !important;
}

</style>

techlyser_ecom_0-1675182525846.png


Note - For adding subheading it needs to adjust code of section and that requires store access for that.

 

Techlyser || Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

GemPages
Shopify Partner
5588 1261 1207

Hello @lagentilestore 

 

You can follow these steps: 
1. Go to Online Store->Theme->Edit code

GemPages_0-1675220058058.png

2. Open your theme.liquid file, paste the below code before </body>

GemPages_1-1675220078670.png

  <style>
     .section-collection-list .collection-list-wrapper .card-wrapper .card .icon-wrap {
          display: none !important;
      }
    </style>

I hope the above is useful to you.


Kind & Best regards, 
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center
JBMartin
Excursionist
22 0 7

This worked.  Thank you. 🙂