XF 2.2 Make a child nav link bold

PASS

Well-known member
Trying to make a child nav link bold in the popup list. I'm guessing this needs to be done in the extra.less template?

2022-02-16_03-57-57.webp
 
I figured it out. In case anyone else wants to style the links in the nav child menu. Add this to your extra.less

CSS:
[data-nav-id="your_id_here"] { font-weight: 700; }
 
Top Bottom