Font and color of menu

Hello,

how can I change font and this purlpe color of menu?

Hi,

  1. In order to change the font just for you nav menu, use this css code:
.navbar.navbar-default {
    font-family: 'Montserrat', sans-serif;/*insert here your font;*/
{

  1. If you want to change font for all use this:
body {
font-family: 'Montserrat', sans-serif;/*insert here your font;*/
}
  1. Change colour of the small line:
#secondary .widget-title:after {
background: #a161bf;/*insert here your desired colour;*/
}
  1. Change colour of title:
.cat-title a {
    color: #8e6193;/*insert here your desired colour;*/
}

Hi,

thank you!

body {
font-family: ‘PT Sans’, sans-serif;
}

Is it correct because font PT Sans dosn’t show on my page?

Is is possibile to change purple color from whole the page into different color?

Kasia

Hi Kasia,

I hope you are well today and thank you for your questions.

body { font-family: ‘PT Sans’, sans-serif; }

Is it correct because font PT Sans dosn’t show on my page?

The PT Sans font is not web safe font so you have to load it on your site using the following solutions.

Is is possibile to change purple color from whole the page into different color?

You can change it from the theme options as shown in the attached screenshot.

Best Regards,
Movin