I want to show 4 collection in my collection list

In PC it’s shows the 4 collection on collection list but I mobile it shows only 2 I want to 4 in mobile also please help me !

What is your store link or what theme are you using?

Store name - Qx-rosyz-demo-5

Store link - https://f7e519-4.myshopify.com/

Make sure to backup your theme before making any changes to it.

Then go to Edit Code > Search for the file “featured-collection.liquid”

On this page, you will scroll down to almost the bottom to this line of code:

{
      "type": "select",
      "id": "columns_mobile",
      "default": "2",
      "label": "t:sections.main-collection-product-grid.settings.columns_mobile.label",
      "options": [
        {
          "value": "1",
          "label": "t:sections.main-collection-product-grid.settings.columns_mobile.options__1.label"
        },
        {
          "value": "2",
          "label": "t:sections.main-collection-product-grid.settings.columns_mobile.options__2.label"
        }
      ]
    },

replace it with:

{
      "type": "select",
      "id": "columns_mobile",
      "default": "2",
      "label": "t:sections.main-collection-product-grid.settings.columns_mobile.label",
      "options": [
        {
          "value": "1",
          "label": "t:sections.main-collection-product-grid.settings.columns_mobile.options__1.label"
        },
        {
          "value": "2",
          "label": "t:sections.main-collection-product-grid.settings.columns_mobile.options__2.label"
        },
        {
          "value": "3",
          "label": "3 Columns"
        },
        {
          "value": "4",
          "label": "4 Columns"
        }
      ]
    },

and finally, at the VERY top of that same page, add the following CSS:


Sir, it’s showing 5 types of featured collection liquid in which I have to
paste code please tell me sir

Take a screenshot of the section, you have quite a few. Not sure which section you want.

Which section?