Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter eSaracco

    (@esaracco)

    I should include my site URL. ??
    payrollbyjulia.com

    Thank you!

    Plugin Author sevenspark

    (@sevenspark)

    Hi Erika,

    ShiftNav inherits the font from your site (generally the font set on the body element). The reason it’s a serif font is because your site doesn’t have a font set for the body, so it falls back to the browser’s defaults.

    If you’d like to change ShiftNav’s font, you can add this CSS:

    .shiftnav{
      font-family:Tahoma, Arial, Helvetica, sans-serif;
    }

    Though generally you really want to define a font for the body which everything else will inherit unless overridden, so what you should probably really be doing is adding

    body{
      font-family:Tahoma, Arial, Helvetica, sans-serif;
    }

    to your site.

    Hope that helps! ??

    Chris

    Thread Starter eSaracco

    (@esaracco)

    So simple! Thank you. ??

    Plugin Author sevenspark

    (@sevenspark)

    You’re welcome! ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Font in ShiftNav Menu’ is closed to new replies.