I want to remove the collapsible menu from the footer on the mobile screen only. I want to add 2 columns in one row in flex design. Can anyone suggest the code? my code is below
{%- if block.type == ‘menu’ -%}
{%- liquid
assign column_class = ‘small-12 medium-4 large-2’
case block.settings.column_size
when ‘medium’
assign column_class = ‘small-12 medium-3’
when ‘large’
assign column_class = ‘small-12 medium-6’
endcase
-%}
-
{% for link in block.settings.menu.links %}
{% assign has_sub_menu = false %}
{% if link.links.size > 0 %}
{% assign has_sub_menu = true %}
{% endif %}
-
{{ link.title }}{% if has_sub_menu %}{%- render 'svg-icons' with 'thb-dropdown-bottom' -%}{% endif %}
{% if has_sub_menu %}
-
{% for l in link.links %}
{% assign has_sub_menu = false %}
{% if l.links.size > 0 %}
{% assign has_sub_menu = true %}
{% endif %}
-
{{ l.title }}{% if has_sub_menu %}{%- render 'svg-icons' with 'thb-dropdown-bottom' -%}{% endif %}
{% if has_sub_menu %}
-
{% for sub_link in l.links %}
{% assign has_sub_menu = false %}
{% if sub_link.links.size > 0 %}
{% assign has_sub_menu = true %}
{% endif %}
- {{ sub_link.title }} {% endfor %}
{% endfor %}
{% endfor %}
-
{{ l.title }}{% if has_sub_menu %}{%- render 'svg-icons' with 'thb-dropdown-bottom' -%}{% endif %}
{% if has_sub_menu %}