Adding bold styling to Autonav menu

I’m a bit rusty with Concrete and trying to develop a new site using the Atomik theme (latest build).

I’m trying to make the font of all text/links within the auto-nav bold. I did add the following as a piece of custom theme CSS but it doesn’t seem to do anything if I add it as custom class in the block template.

strongtext {
font-weight:800;
}

Image below may suggest I have no idea what I’m doing :slight_smile: So what’s the best way to add/override to bold text styling with blocks like the autonav? Thanks

Try declaring your custom class as important

strongtext {
font-weight: 800!important ;
}

Thanks, no change. I do have access to the css/less files but trying to avoid that.

The dot is missing from the css declaration, try

.strongtext {
font-weight: 800!important ;
}

Nice. Thanks. It seems to work only on the top level menu items, but this is good enough or maybe better.

An addition of font-weight in the Design/Block template could maybe be a useful feature.