Hi @scriks
You can use the following CSS as follows:
li a {
font-family: Arial, Helvetica, sans-serif;
}
Do let me know how the code works.
Regards,
Ruchit
Thread Starter
scriks
(@scriks)
Thanks Ruchit for your fast response,
I tried the code, but I’m struggling to write the right syntax for the font I want to use.
I tried
li a {
font-family: Helvetica bold;
}
but it doesn’t work.
Any guess?
Hey @scriks
You need to add Font-weight property to bold menu items. You can add following code:
li a {
font-family: Arial, Helvetica, sans-serif;
font-weight:600
}
This will help you resolve your query.
Regards,
Ruchit
Thread Starter
scriks
(@scriks)
It worked perfectly!
Thank you so much @ruchitshah
-
This reply was modified 5 years, 9 months ago by
scriks.