Change font size (Tried forum already, didnt work)

Hi All,

How can I change the font style of my travelify theme? I have attached a file for your reference.
I have also tried other suggestions in the forum, but didnt work, instead it changed the font style only with my pages.

Cheers!

Hi @pilotmev,

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

You can change the font size of the page title in your screenshot it is “Packages” by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Apperance -> Theme Options -> Other -> Custom CSS

body.page .entry-header h2.entry-title {
  font-size: 40px;
}

Change the font size in the above code to whatever you want to.

I am not sure how you are displaying the “TRAVEL BEE INN” text on the page as shown in your shared screenshot so could you please share the [age URL from your site where you are displaying it so that i can help you to change the font size of it?

Best Regards,
Movin

Hi Movin,

This is the link. I forgot to include, how to change the Font style as well. Please advice.

I really appreciate your help.

Thanks!

Hi @pilotmev,

Thank you for sharing the page URL.

You can change the font size and style of those elements by using the following CSS code.

body.page .entry-header h2.entry-title {
  font-size: 40px;
  font-style: italic;
}

body.page .entry-content h5{
	font-size: 30px;
	font-style: italic;
}

Change the font size and style in the above code to whatever you want to apply.

You will find more information about font style on the following page.

http://www.w3schools.com/cssref/pr_font_font-style.asp

You can also use the text decoration CSS property in the above as described on the below page.

http://www.w3schools.com/cssref/pr_text_text-decoration.asp

Cheers,
Movin