• Resolved scriks

    (@scriks)


    Hi,
    I would like to change the menu font. Is there any css command to make this possible? thanks

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • 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 4 years, 3 months ago by scriks.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change menu font’ is closed to new replies.