How can I fix the disabled link in Dawn theme's main navigation dropdown?

Hi @smj_90 ,

I’m using Dawn 6.0.2 and followed these instruction which has partly fixed my problem.

The menu I’m using is 3 levels deep and only the child links were working. Following these instructions the top level parent link now works as well but the sub link under that don’t work. So the grandparent links now work fine, the parent links do not work and the grandchild links work fine. Do you know which code will need to be altered to add the tag in?

Thanks,

Andrew

EDIT:

Actually think I’ve sorted this now by making the following changes

Line 165

Original

{{ childlink.title | escape }} {% render 'icon-arrow' %} {% render 'icon-caret' %}

Changed to

{{ childlink.title | escape }} {% render 'icon-arrow' %} {% render 'icon-caret' %}

Line 419

Original

{{ childlink.title | escape }} {% render 'icon-caret' %}

Changed to

{{ childlink.title | escape }} {% render 'icon-caret' %}

Hopefully that’s OK - I added the inline style just to get a quick fix on it.