DAWN THEme - How to make parent menu item clickable?

IMPORTANT DETAIL: the code snippet is located in a file called “header-dropdown-menu.liquid” right to this date.

replace this code:

<span {%- if link.child_active %} class=“header__active-menu-item”{% endif %}>{{ link.title | escape }}

implement this code instead:

{{- link.title | escape -}}

didnt find solution for mobile though.

Hi Shupit,

This is great for parent child, do you have a solution for child grandchild? I tried replicating the above code for the grandchild section and was unsuccessful.

  1. Go to header-drawer.liquid
  2. On line No.32 find this" {{ link.title | escape }}"
  3. repalce with this

    <a{% if link.child_active %} class=“header__active-menu-item”{% endif %} href=“{{ link.url }}” style=“color:rgb(var(–color-foreground));text-decoration: none;”>
    {{- link.title | escape -}}

  4. and hit Save
    Thanks!