How to remove title from pages?

Hello, I want to edit my page in my menu, but I found it’s difficult to remove the logo in the content (it has already shown once) and I don’t know how to change the font size since I want to change another font for the other language.

Please check the attachment.

Hello there,

I hope you are doing well today.

Could you please provide a link to your website so that I can inspect it?

Best Regards,
Support

Hello,
the link is http://sunpark.club/
Thanks.

ps. I still wonder if there are any plugins to change the fonts in front page?

Hello there,

Thanks for the website link.

You can use the following CSS code to change the font and remove the title by going to Appearance > Customize > Additional CSS and pasting it there.

/*Change the font family*/
h3.page-title {
    font-family: cursive;
}
/*Remove title*/
h1.entry-title {
    display: none;
}

Best Regards,
Support

Hello,
How can I change the font in Home page? The one with the big heading picture and the font in call out parallax section?

Hello there,

You can try the following CSS code to change the font, the heading font in both of those areas use the same CSS code:

h1, h2, h3, h4, h5, h6 {
    font-family: Helvetica;
}

Use any font is a plugin that can be used to change the font in the theme:

Best Regards,
Support