Troubles, HALF text different type font

Hello,

I am having some troubles with my text. I have changend the font size and type, but in one post half of the text is different.

http://www.travelsnerea.com/tren-en-india-rumbo-a-kerala-y-los-backwaters/

How can I fix it?

Also I would like to know:

  1. How to change the font on the title of the blog ‘Travels by Nerea’
  2. How to make bigger the font size of the title on the post
  3. How to remove the titles from the slidder

Thank you very much in advance.
Nerea

Hello there,

I hope you are doing well today.

The post is using a header in the top so that will be bigger than the text below it which are paragraphs.

This CSS should fix it:


p {
    font-size: 20px;
}

Other Issues:

  1. Go to settings > General and change the Site title.
  2. This CSS should allow you to make the title bigger and bold:

/*Title size and boldness*/
.entry-title, .entry-title a {
    font-size: 26px;
    font-weight: bold;
}

  1. This CSS will allow you to remove the title from the slider:

/*Remove slider titles*/
div.flex-caption {
    display: none;
}

Best Regards,
Support