Change font color within Custom Liquid for menu links

using the following code to create secondary menu:

{% for link in linklists.main-menu.links %}

{{ link.title }} {% endfor %}

“all items candle holders” is the secondary menu

Font color blue with underline is not desired.

Need the font color above, #403B36 or 64,59,54

BONUS if you can tell me how to space out the menu items…

“All items Candle Holders”

Hi @pawlished ,

You can do the following.

{% for link in linklists.main-menu.links %}
{{ link.title }}
 {% endfor %}
1 Like

Incredible! Thank you so much!!!

How can I add text link hover?

Hi @pawlished ,

Please do the code instead. I left a space for the link hover.

{% for link in linklists.main-menu.links %}
{{ link.title }}
 {% endfor %}