• I would like to use “Times New Roman” for my main navigation font. I can not seem to be able to change with CSS below. Any ideas?

    #site-navigation ul li a {
    font-family: ‘Times New Roman’, serif;
    }

Viewing 1 replies (of 1 total)
  • Hi,

    Times New Roman is only available on Windows desktops, but you can easily do that:

    #site-navigation ul li a {
    font-family: ‘Times New Roman’, Times, Georgia, serif;
    }

    To have a very similar font on Mac/Linux Os.
    Font-family will swith to what it can by left to right.

    Regards,

Viewing 1 replies (of 1 total)
  • The topic ‘Menu Font Options on Apprise theme’ is closed to new replies.