Change catagory fond and colour in catagory setting/page

Hi!

Something changed on my website. When you click on a catagory in the top menu, the category name is now left of the page, gray and a different fond. First it was the colour I chose and it was in the middle top part of the page, underneath my logo.

I don’t understand what happened. Can you help me?

You can see it on my website: www.hetgroeneaccent.nl when you click on “leven” or “weten”.

I would like to change it or otherwise remove it because I don’t like it this way.

thx! Fleur

I think it is part of the theme. But how can I change the fond?

Hey there,

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

You can change menu font using the following CSS

Copy and paste the following text in Additional CSS section.
Admin Area -> Appearance -> Customize -> Additional CSS

/*change menu font*/
.navbar-default .navbar-nav a{
  font-family:Lora;
}

Best regards,
Support.

Best regards,
Support.

Hi! Thank you so much for your response.
I think a wasn’t clear. I mean the category name in the page. I made a screenshot.

How do I change the font of that?
I have a code bit it doesn’t change in the Lora font:
} /change font family/
.category h1.page-title {
font-family: lora;

What did I do wrong?

Thanks. Fleur

Hello there,

That CSS does not have the correct closed brackets, remove it and try this instead or add a “}” at the end to close it:

/*change font family*/ .category h1.page-title { font-family: lora; }

If the font does not work then try the following to remove it :

/*Remove category*/ .category h1.page-title { display: none; }

Best Regards,
Support