XF 2.1 Making font bold

Dilf

New member
Hi all, I'm wanting to make some of the default text areas bold. Like these two areas primarily. I just think it would look clearer on mobile. Apologies if this has already been asked. Thanks for any help.

20200214_120701.webp
20200214_120617.webp
 
This is an older video but it's still relevant for the most part. Any changes you do can go inside extra.less template though.

For those two items though you can do something simple like this in extra.less:

Code:
.menu--account, .node-extra  {
    font-weight: bold;
}
 
Top Bottom